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": {
+ "counts": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "critical": {
+ "type": "number"
+ },
+ "minor": {
+ "type": "number"
+ },
+ "moderate": {
+ "type": "number"
+ },
+ "serious": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "critical",
+ "serious",
+ "moderate",
+ "minor"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "failureReason": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "code": {
+ "type": "string"
+ },
+ "reason": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "code"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "id": {
+ "type": "string"
+ },
+ "pagesDone": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "pagesTotal": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "siteId": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "status": {
+ "type": "string"
+ },
+ "totalViolations": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "status"
+ ],
+ "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"
+}