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": 9,
"maxProperties": 9,
"required": [
"baseUrl",
"linkCount",
"uniqueDestinationCount",
"duplicateCount",
"internalLinks",
"externalLinks",
"anchors",
"nodes",
"edges"
],
"properties": {
"baseUrl": {
"type": "string",
"minLength": 9,
"maxLength": 2048
},
"linkCount": {
"type": "integer",
"minimum": 0,
"maximum": 512
},
"uniqueDestinationCount": {
"type": "integer",
"minimum": 0,
"maximum": 512
},
"duplicateCount": {
"type": "integer",
"minimum": 0,
"maximum": 512
},
"internalLinks": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 2,
"maxLength": 16384
}
},
"externalLinks": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 2,
"maxLength": 16384
}
},
"anchors": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 2,
"maxLength": 16384
}
},
"nodes": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 2,
"maxLength": 4096
}
},
"edges": {
"type": "array",
"minItems": 0,
"maxItems": 256,
"items": {
"type": "string",
"minLength": 2,
"maxLength": 4096
}
}
}
}