Realistic output shape
Illustrative output from the canonical adapter fixture and schema. It is not a completed paid execution or a current live observation.
{
"markdown": "# Example\n\nNormalized caller-supplied content.",
"sourceUrl": "example00",
"contentType": "Example caller-supplied content.",
"byteCount": 0,
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
}
View complete output schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"minProperties": 5,
"maxProperties": 6,
"required": [
"markdown",
"sourceUrl",
"contentType",
"byteCount",
"sha256"
],
"properties": {
"markdown": {
"type": "string",
"minLength": 0,
"maxLength": 65536
},
"title": {
"type": "string",
"minLength": 0,
"maxLength": 1024
},
"sourceUrl": {
"type": "string",
"minLength": 9,
"maxLength": 2048
},
"contentType": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"byteCount": {
"type": "integer",
"minimum": 0,
"maximum": 10485760
},
"sha256": {
"type": "string",
"pattern": "^[0-9a-f]{64}$",
"minLength": 64,
"maxLength": 64
}
}
}