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": [
"itemCount",
"exactDuplicateGroups",
"normalizedDuplicateGroups",
"canonicalRepresentatives",
"retainedOrder"
],
"properties": {
"itemCount": {
"type": "integer",
"minimum": 1,
"maximum": 256
},
"exactDuplicateGroups": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 2,
"maxLength": 8192
}
},
"normalizedDuplicateGroups": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 2,
"maxLength": 8192
}
},
"canonicalRepresentatives": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"ordinal",
"text",
"exactHash",
"normalizedHash"
],
"properties": {
"ordinal": {
"type": "integer",
"minimum": 0,
"maximum": 255
},
"text": {
"type": "string",
"minLength": 0,
"maxLength": 65536
},
"exactHash": {
"type": "string",
"pattern": "^[0-9a-f]{64}$",
"minLength": 64,
"maxLength": 64
},
"normalizedHash": {
"type": "string",
"pattern": "^[0-9a-f]{64}$",
"minLength": 64,
"maxLength": 64
}
}
}
},
"retainedOrder": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "integer",
"minimum": 0,
"maximum": 255
}
}
}
}