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": 6,
"maxProperties": 6,
"required": [
"recordCount",
"validCount",
"invalidCount",
"records",
"rejectedLines",
"normalized"
],
"properties": {
"recordCount": {
"type": "integer",
"minimum": 0,
"maximum": 256
},
"validCount": {
"type": "integer",
"minimum": 0,
"maximum": 256
},
"invalidCount": {
"type": "integer",
"minimum": 0,
"maximum": 256
},
"records": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"line",
"value",
"canonical"
],
"properties": {
"line": {
"type": "integer",
"minimum": 1,
"maximum": 4096
},
"value": {
"type": [
"object",
"array",
"string",
"number",
"boolean",
"null"
]
},
"canonical": {
"type": "string",
"minLength": 1,
"maxLength": 65536
}
}
}
},
"rejectedLines": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"line",
"text",
"error"
],
"properties": {
"line": {
"type": "integer",
"minimum": 1,
"maximum": 4096
},
"text": {
"type": "string",
"minLength": 0,
"maxLength": 1024
},
"error": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
}
}
},
"normalized": {
"type": "string",
"minLength": 0,
"maxLength": 65536
}
}
}