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": 5,
"maxProperties": 5,
"required": [
"added",
"removed",
"changed",
"unchangedCount",
"summary"
],
"properties": {
"added": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"path",
"value"
],
"properties": {
"path": {
"type": "string",
"minLength": 0,
"maxLength": 2048
},
"value": {
"type": [
"object",
"array",
"string",
"number",
"boolean",
"null"
]
}
}
}
},
"removed": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"path",
"value"
],
"properties": {
"path": {
"type": "string",
"minLength": 0,
"maxLength": 2048
},
"value": {
"type": [
"object",
"array",
"string",
"number",
"boolean",
"null"
]
}
}
}
},
"changed": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"path",
"before",
"after"
],
"properties": {
"path": {
"type": "string",
"minLength": 0,
"maxLength": 2048
},
"before": {
"type": [
"object",
"array",
"string",
"number",
"boolean",
"null"
]
},
"after": {
"type": [
"object",
"array",
"string",
"number",
"boolean",
"null"
]
}
}
}
},
"unchangedCount": {
"type": "integer",
"minimum": 0,
"maximum": 8192
},
"summary": {
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"added",
"removed",
"changed",
"total"
],
"properties": {
"added": {
"type": "integer",
"minimum": 0,
"maximum": 2048
},
"removed": {
"type": "integer",
"minimum": 0,
"maximum": 2048
},
"changed": {
"type": "integer",
"minimum": 0,
"maximum": 2048
},
"total": {
"type": "integer",
"minimum": 0,
"maximum": 2048
}
}
}
}
}