Realistic output shape
Illustrative output from the canonical adapter fixture and schema. It is not a completed paid execution or a current live observation.
{
"tableCount": 0,
"tables": [
{}
],
"warnings": [
"Verify the caller-supplied data before relying on this result."
]
}
View complete output schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"tableCount",
"tables",
"warnings"
],
"properties": {
"tableCount": {
"type": "integer",
"minimum": 0,
"maximum": 64
},
"tables": {
"type": "array",
"minItems": 0,
"maxItems": 64,
"items": {
"type": [
"object"
]
}
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}