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": [
"kind",
"urls",
"childSitemaps",
"counts",
"warnings"
],
"properties": {
"kind": {
"type": "string",
"enum": [
"urlset",
"sitemapindex"
],
"minLength": 6,
"maxLength": 12
},
"urls": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 5,
"maxProperties": 5,
"required": [
"url",
"lastmod",
"changefreq",
"priority",
"alternates"
],
"properties": {
"url": {
"type": "string",
"minLength": 9,
"maxLength": 2048
},
"lastmod": {
"type": [
"string",
"null"
]
},
"changefreq": {
"type": [
"string",
"null"
]
},
"priority": {
"type": [
"string",
"null"
]
},
"alternates": {
"type": "array",
"minItems": 0,
"maxItems": 64,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"language",
"href"
],
"properties": {
"language": {
"type": "string",
"minLength": 0,
"maxLength": 64
},
"href": {
"type": "string",
"minLength": 9,
"maxLength": 2048
}
}
}
}
}
}
},
"childSitemaps": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"url",
"lastmod"
],
"properties": {
"url": {
"type": "string",
"minLength": 9,
"maxLength": 2048
},
"lastmod": {
"type": [
"string",
"null"
]
}
}
}
},
"counts": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"urls",
"childSitemaps",
"malformed"
],
"properties": {
"urls": {
"type": "integer",
"minimum": 0,
"maximum": 10000
},
"childSitemaps": {
"type": "integer",
"minimum": 0,
"maximum": 256
},
"malformed": {
"type": "integer",
"minimum": 0,
"maximum": 10000
}
}
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}