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": 3,
"maxProperties": 3,
"required": [
"chunkCount",
"chunks",
"sourceHash"
],
"properties": {
"chunkCount": {
"type": "integer",
"minimum": 0,
"maximum": 512
},
"chunks": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 8,
"maxProperties": 8,
"required": [
"id",
"headingHierarchy",
"text",
"start",
"end",
"estimatedTokens",
"hash",
"ordinal"
],
"properties": {
"id": {
"type": "string",
"minLength": 10,
"maxLength": 16
},
"headingHierarchy": {
"type": "array",
"minItems": 0,
"maxItems": 6,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 8192
}
},
"text": {
"type": "string",
"minLength": 1,
"maxLength": 16000
},
"start": {
"type": "integer",
"minimum": 0,
"maximum": 1048576
},
"end": {
"type": "integer",
"minimum": 0,
"maximum": 1048576
},
"estimatedTokens": {
"type": "integer",
"minimum": 1,
"maximum": 100000
},
"hash": {
"type": "string",
"pattern": "^[0-9a-f]{64}$",
"minLength": 64,
"maxLength": 64
},
"ordinal": {
"type": "integer",
"minimum": 0,
"maximum": 511
}
}
}
},
"sourceHash": {
"type": "string",
"pattern": "^[0-9a-f]{64}$",
"minLength": 64,
"maxLength": 64
}
}
}