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": 8,
"maxProperties": 12,
"required": [
"sourceUrl",
"headings",
"links",
"images",
"metadata",
"openGraph",
"jsonLd",
"visibleText"
],
"properties": {
"sourceUrl": {
"type": "string",
"minLength": 9,
"maxLength": 2048
},
"title": {
"type": "string",
"minLength": 0,
"maxLength": 1024
},
"description": {
"type": "string",
"minLength": 0,
"maxLength": 4096
},
"canonicalUrl": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"headings": {
"type": "array",
"minItems": 0,
"maxItems": 128,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"level",
"text"
],
"properties": {
"level": {
"type": "integer",
"minimum": 1,
"maximum": 6
},
"text": {
"type": "string",
"minLength": 0,
"maxLength": 2048
}
}
}
},
"links": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"text",
"href"
],
"properties": {
"text": {
"type": "string",
"minLength": 0,
"maxLength": 2048
},
"href": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
}
}
},
"images": {
"type": "array",
"minItems": 0,
"maxItems": 128,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 3,
"required": [
"alt",
"src"
],
"properties": {
"alt": {
"type": "string",
"minLength": 0,
"maxLength": 2048
},
"src": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"title": {
"type": "string",
"minLength": 0,
"maxLength": 2048
}
}
}
},
"metadata": {
"type": "array",
"minItems": 0,
"maxItems": 128,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"value": {
"type": "string",
"minLength": 0,
"maxLength": 8192
}
}
}
},
"openGraph": {
"type": "array",
"minItems": 0,
"maxItems": 128,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 256
},
"value": {
"type": "string",
"minLength": 0,
"maxLength": 8192
}
}
}
},
"jsonLd": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 32768
}
},
"visibleText": {
"type": "string",
"minLength": 0,
"maxLength": 65536
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}