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": 10,
"maxProperties": 10,
"required": [
"beforeHash",
"afterHash",
"beforeLineCount",
"afterLineCount",
"beforeSectionCount",
"afterSectionCount",
"addedSections",
"removedSections",
"changedSections",
"summary"
],
"properties": {
"beforeHash": {
"type": "string",
"pattern": "^[0-9a-f]{64}$",
"minLength": 64,
"maxLength": 64
},
"afterHash": {
"type": "string",
"pattern": "^[0-9a-f]{64}$",
"minLength": 64,
"maxLength": 64
},
"beforeLineCount": {
"type": "integer",
"minimum": 0,
"maximum": 100000
},
"afterLineCount": {
"type": "integer",
"minimum": 0,
"maximum": 100000
},
"beforeSectionCount": {
"type": "integer",
"minimum": 0,
"maximum": 2000
},
"afterSectionCount": {
"type": "integer",
"minimum": 0,
"maximum": 2000
},
"addedSections": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"heading",
"text",
"hash",
"lineCount"
],
"properties": {
"heading": {
"type": "string",
"minLength": 1,
"maxLength": 8192
},
"text": {
"type": "string",
"minLength": 0,
"maxLength": 65536
},
"hash": {
"type": "string",
"minLength": 64,
"maxLength": 64
},
"lineCount": {
"type": "integer",
"minimum": 0,
"maximum": 100000
}
}
}
},
"removedSections": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"heading",
"text",
"hash",
"lineCount"
],
"properties": {
"heading": {
"type": "string",
"minLength": 1,
"maxLength": 8192
},
"text": {
"type": "string",
"minLength": 0,
"maxLength": 65536
},
"hash": {
"type": "string",
"minLength": 64,
"maxLength": 64
},
"lineCount": {
"type": "integer",
"minimum": 0,
"maximum": 100000
}
}
}
},
"changedSections": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 5,
"maxProperties": 5,
"required": [
"heading",
"beforeHash",
"afterHash",
"beforeText",
"afterText"
],
"properties": {
"heading": {
"type": "string",
"minLength": 1,
"maxLength": 8192
},
"beforeHash": {
"type": "string",
"minLength": 64,
"maxLength": 64
},
"afterHash": {
"type": "string",
"minLength": 64,
"maxLength": 64
},
"beforeText": {
"type": "string",
"minLength": 0,
"maxLength": 65536
},
"afterText": {
"type": "string",
"minLength": 0,
"maxLength": 65536
}
}
}
},
"summary": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"added",
"removed",
"changed"
],
"properties": {
"added": {
"type": "integer",
"minimum": 0,
"maximum": 2000
},
"removed": {
"type": "integer",
"minimum": 0,
"maximum": 2000
},
"changed": {
"type": "integer",
"minimum": 0,
"maximum": 2000
}
}
}
}
}