changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "coverageDisclaimer": {
+ "description": "Why this result is not a compliance verdict. Always relay it; never present a scan as proof of conformance.",
+ "type": "string"
+ },
+ "run": {
+ "additionalProperties": false,
+ "properties": {
+ "checkpoints": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "label": {
+ "type": "string"
+ },
+ "scanId": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "scanId",
+ "label",
+ "url",
+ "status"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "createdAt": {
+ "type": "string"
+ },
+ "failedStepIndex": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "failureReasonCode": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "failureReasonText": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "finishedAt": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "journeyId": {
+ "type": "string"
+ },
+ "siteId": {
+ "type": "string"
+ },
+ "startedAt": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "journeyId",
+ "siteId",
+ "status",
+ "checkpoints",
+ "createdAt"
+ ],
+ "type": "object"
+ },
+ "scoringGuidance": {
+ "description": "Binding instruction for the assistant reading this result. Follow it literally.",
+ "type": "string"
+ },
+ "standard": {
+ "description": "The standard the checks were run against, e.g. \"WCAG 2.1 AA\".",
+ "type": "string"
+ }
+ },
+ "required": [
+ "run",
+ "coverageDisclaimer",
+ "scoringGuidance",
+ "standard"
+ ],
+ "type": "object"
+}