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": 5,
"maxProperties": 5,
"required": [
"format",
"status",
"outline",
"findings",
"summary"
],
"properties": {
"format": {
"type": "string",
"enum": [
"html",
"markdown"
],
"minLength": 4,
"maxLength": 8
},
"status": {
"type": "string",
"enum": [
"pass",
"warn",
"fail"
],
"minLength": 4,
"maxLength": 4
},
"outline": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"level",
"text",
"id",
"ordinal"
],
"properties": {
"level": {
"type": "integer",
"minimum": 1,
"maximum": 6
},
"text": {
"type": "string",
"minLength": 0,
"maxLength": 8192
},
"id": {
"type": "string",
"minLength": 0,
"maxLength": 256
},
"ordinal": {
"type": "integer",
"minimum": 0,
"maximum": 255
}
}
}
},
"findings": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"code",
"severity",
"ordinal"
],
"properties": {
"code": {
"type": "string",
"enum": [
"empty_heading",
"skipped_level",
"duplicate_id",
"duplicate_heading"
],
"minLength": 11,
"maxLength": 17
},
"severity": {
"type": "string",
"enum": [
"warn",
"fail"
],
"minLength": 4,
"maxLength": 4
},
"ordinal": {
"type": "integer",
"minimum": 0,
"maximum": 255
}
}
}
},
"summary": {
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"headingCount",
"h1Count",
"failCount",
"warnCount"
],
"properties": {
"headingCount": {
"type": "integer",
"minimum": 0,
"maximum": 256
},
"h1Count": {
"type": "integer",
"minimum": 0,
"maximum": 256
},
"failCount": {
"type": "integer",
"minimum": 0,
"maximum": 256
},
"warnCount": {
"type": "integer",
"minimum": 0,
"maximum": 256
}
}
}
}
}