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": 7,
"maxProperties": 7,
"required": [
"headers",
"delimiter",
"rowCount",
"rows",
"validationIssues",
"rejectedRows",
"normalized"
],
"properties": {
"headers": {
"type": "array",
"minItems": 1,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 0,
"maxLength": 8192
}
},
"delimiter": {
"type": "string",
"enum": [
",",
";",
"tab"
],
"minLength": 1,
"maxLength": 3
},
"rowCount": {
"type": "integer",
"minimum": 0,
"maximum": 10000
},
"rows": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 0,
"maxLength": 65536
}
}
},
"validationIssues": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": [
"object"
]
}
},
"rejectedRows": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": [
"object"
]
}
},
"normalized": {
"type": "string",
"minLength": 0,
"maxLength": 65536
}
}
}