StackHawk · JSON Structure

Stackhawk Scan Structure

Structure of a scan result returned by the StackHawk API

Type: object Properties: 0
API SecurityApplication SecurityDASTSecurity TestingVulnerability Management

Stackhawk Scan Structure is a JSON Structure definition published by StackHawk.

Meta-schema:

JSON Structure

Raw ↑
{
  "title": "StackHawk Scan",
  "description": "Structure of a scan result returned by the StackHawk API",
  "type": "object",
  "fields": [
    { "name": "scanId", "type": "string", "required": true },
    { "name": "appId", "type": "string", "required": true },
    { "name": "envId", "type": "string", "required": true },
    { "name": "status", "type": "string", "enum": ["RUNNING", "COMPLETED", "FAILED"], "required": true },
    { "name": "startedAt", "type": "string", "format": "date-time" },
    { "name": "completedAt", "type": "string", "format": "date-time" },
    { "name": "findingCount", "type": "integer" }
  ]
}