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": [
"wellFormed",
"root",
"namespaces",
"nodeCount",
"structure",
"warnings",
"errors"
],
"properties": {
"wellFormed": {
"type": "boolean"
},
"root": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"namespaces": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 5,
"maxLength": 256
},
"value": {
"type": "string",
"minLength": 0,
"maxLength": 4096
}
}
}
},
"nodeCount": {
"type": "integer",
"minimum": 1,
"maximum": 4096
},
"structure": {
"type": "string",
"minLength": 2,
"maxLength": 65536
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
},
"errors": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}