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": 4,
"maxProperties": 4,
"required": [
"title",
"headingCount",
"headings",
"warnings"
],
"properties": {
"title": {
"type": "string",
"minLength": 0,
"maxLength": 8192
},
"headingCount": {
"type": "integer",
"minimum": 0,
"maximum": 256
},
"headings": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 9,
"maxProperties": 9,
"required": [
"level",
"text",
"anchor",
"ordinal",
"start",
"end",
"sectionStart",
"sectionEnd",
"parentOrdinal"
],
"properties": {
"level": {
"type": "integer",
"minimum": 1,
"maximum": 6
},
"text": {
"type": "string",
"minLength": 0,
"maxLength": 8192
},
"anchor": {
"type": "string",
"minLength": 1,
"maxLength": 8192
},
"ordinal": {
"type": "integer",
"minimum": 0,
"maximum": 255
},
"start": {
"type": "integer",
"minimum": 0,
"maximum": 524288
},
"end": {
"type": "integer",
"minimum": 0,
"maximum": 524288
},
"sectionStart": {
"type": "integer",
"minimum": 0,
"maximum": 524288
},
"sectionEnd": {
"type": "integer",
"minimum": 0,
"maximum": 524288
},
"parentOrdinal": {
"type": "integer",
"minimum": -1,
"maximum": 255
}
}
}
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}