Illustrative output from the canonical adapter fixture and schema. It is not a completed paid execution or a current live observation.
View complete output schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"minProperties": 8,
"maxProperties": 8,
"required": [
"sourceUrl",
"status",
"normalizedHeaders",
"findings",
"result",
"cacheSummary",
"securitySummary",
"discoverySummary"
],
"properties": {
"sourceUrl": {
"type": "string",
"minLength": 0,
"maxLength": 2048
},
"status": {
"type": "integer",
"minimum": 0,
"maximum": 599
},
"normalizedHeaders": {
"type": "array",
"minItems": 1,
"maxItems": 128,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"name",
"values"
],
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"values": {
"type": "array",
"minItems": 1,
"maxItems": 128,
"items": {
"type": "string",
"minLength": 0,
"maxLength": 8192
}
}
}
}
},
"findings": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"code",
"severity",
"header"
],
"properties": {
"code": {
"type": "string",
"enum": [
"duplicate_header",
"missing_header",
"cors_wildcard_credentials"
],
"minLength": 14,
"maxLength": 25
},
"severity": {
"type": "string",
"enum": [
"info",
"warn",
"fail"
],
"minLength": 4,
"maxLength": 4
},
"header": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
}
}
},
"result": {
"type": "string",
"enum": [
"pass",
"warn",
"fail"
],
"minLength": 4,
"maxLength": 4
},
"cacheSummary": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"present",
"missing"
],
"properties": {
"present": {
"type": "array",
"minItems": 0,
"maxItems": 16,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
},
"missing": {
"type": "array",
"minItems": 0,
"maxItems": 16,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
}
}
},
"securitySummary": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"present",
"missing"
],
"properties": {
"present": {
"type": "array",
"minItems": 0,
"maxItems": 16,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
},
"missing": {
"type": "array",
"minItems": 0,
"maxItems": 16,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
}
}
},
"discoverySummary": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"present",
"missing"
],
"properties": {
"present": {
"type": "array",
"minItems": 0,
"maxItems": 16,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
},
"missing": {
"type": "array",
"minItems": 0,
"maxItems": 16,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
}
}
}
}
}