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": 3,
"maxProperties": 3,
"required": [
"sourceUrl",
"results",
"warnings"
],
"properties": {
"sourceUrl": {
"type": "string",
"minLength": 9,
"maxLength": 2048
},
"results": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"name",
"kind",
"matched",
"values"
],
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"kind": {
"type": "string",
"enum": [
"text",
"attribute",
"metadata",
"json_ld"
],
"minLength": 4,
"maxLength": 9
},
"matched": {
"type": "integer",
"minimum": 0,
"maximum": 256
},
"values": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 0,
"maxLength": 32768
}
}
}
}
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}