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": 13,
"required": [
"contentType",
"robots",
"openGraph",
"twitter",
"jsonLd",
"alternateLanguages",
"icons",
"warnings"
],
"properties": {
"sourceUrl": {
"type": "string",
"minLength": 9,
"maxLength": 2048
},
"contentType": {
"type": "string",
"minLength": 3,
"maxLength": 256
},
"title": {
"type": "string",
"minLength": 1,
"maxLength": 1024
},
"description": {
"type": "string",
"minLength": 1,
"maxLength": 4096
},
"canonicalUrl": {
"type": "string",
"minLength": 1,
"maxLength": 2048
},
"language": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"robots": {
"type": "array",
"minItems": 0,
"maxItems": 128,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
},
"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": 1,
"maxLength": 8192
}
}
}
},
"twitter": {
"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": 1,
"maxLength": 8192
}
}
}
},
"jsonLd": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 32768
}
},
"alternateLanguages": {
"type": "array",
"minItems": 0,
"maxItems": 128,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"language",
"href"
],
"properties": {
"language": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"href": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
}
}
},
"icons": {
"type": "array",
"minItems": 0,
"maxItems": 128,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"relation",
"sizes",
"href"
],
"properties": {
"relation": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"sizes": {
"type": "string",
"minLength": 0,
"maxLength": 128
},
"href": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
}
}
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}