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": 7,
"maxProperties": 7,
"required": [
"groups",
"matchedGroup",
"matchedRule",
"crawlAllowed",
"sitemaps",
"crawlDelay",
"warnings"
],
"properties": {
"groups": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"userAgents",
"rules",
"crawlDelay"
],
"properties": {
"userAgents": {
"type": "array",
"minItems": 1,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 256
}
},
"rules": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 2,
"maxProperties": 2,
"required": [
"directive",
"path"
],
"properties": {
"directive": {
"type": "string",
"enum": [
"allow",
"disallow"
],
"minLength": 5,
"maxLength": 8
},
"path": {
"type": "string",
"minLength": 0,
"maxLength": 2048
}
}
}
},
"crawlDelay": {
"type": [
"number",
"null"
]
}
}
}
},
"matchedGroup": {
"type": [
"array",
"null"
]
},
"matchedRule": {
"type": [
"object",
"null"
]
},
"crawlAllowed": {
"type": [
"boolean",
"null"
]
},
"sitemaps": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 2048
}
},
"crawlDelay": {
"type": [
"number",
"null"
]
},
"warnings": {
"type": "array",
"minItems": 0,
"maxItems": 32,
"items": {
"type": "string",
"minLength": 1,
"maxLength": 1024
}
}
}
}