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": 4,
"maxProperties": 4,
"required": [
"url",
"checks",
"discoveredResourceUrls",
"summary"
],
"properties": {
"url": {
"type": "string",
"minLength": 9,
"maxLength": 2048
},
"checks": {
"type": "array",
"minItems": 1,
"maxItems": 32,
"items": {
"type": "object",
"additionalProperties": false,
"minProperties": 4,
"maxProperties": 4,
"required": [
"id",
"status",
"detail",
"url"
],
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"status": {
"type": "string",
"enum": [
"pass",
"warn",
"fail"
],
"minLength": 4,
"maxLength": 4
},
"detail": {
"type": "string",
"minLength": 1,
"maxLength": 1024
},
"url": {
"type": [
"string",
"null"
]
}
}
}
},
"discoveredResourceUrls": {
"type": "array",
"minItems": 0,
"maxItems": 16,
"items": {
"type": "string",
"minLength": 9,
"maxLength": 2048
}
},
"summary": {
"type": "object",
"additionalProperties": false,
"minProperties": 3,
"maxProperties": 3,
"required": [
"pass",
"warn",
"fail"
],
"properties": {
"pass": {
"type": "integer",
"minimum": 0,
"maximum": 32
},
"warn": {
"type": "integer",
"minimum": 0,
"maximum": 32
},
"fail": {
"type": "integer",
"minimum": 0,
"maximum": 32
}
}
}
}
}