addedOutput schema / properties / accessibilityChecks
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "checkId": {
+ "type": "string"
+ },
+ "howToFix": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "message": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "pass",
+ "fail",
+ "warn",
+ "error"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "checkId",
+ "name",
+ "status",
+ "message",
+ "howToFix"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Accessibility / layout-stability checks (A-series) run over the homepage."
+}
addedOutput schema / properties / accessibilityScore
Added value: +{
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Accessibility / layout-stability sub-score (0–100) over the homepage WCAG checks; null when none ran. Separate from the Vercel score."
+}
addedOutput schema / properties / protocolResults
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "checkId": {
+ "type": "string"
+ },
+ "howToFix": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "message": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "pass",
+ "fail",
+ "warn",
+ "error"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "checkId",
+ "name",
+ "status",
+ "message",
+ "howToFix"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Agent-protocol checks (C-series) that ran — only for endpoints the site actually exposes."
+}