Skip to main content
Glama

Capture bounded web issue evidence

web_issue_capture

Capture redacted browser evidence for a debugging session with a compact summary by default, or request full, selected, or cursor-changed surfaces to pinpoint issues.

Instructions

Capture redacted browser evidence with a compact summary by default, or explicitly request full, selected, or cursor-based changed surfaces. WebMCP metadata is discover-only and untrusted; screenshots are opt-in through full/include and remain suppressed for private input, auth-seeded sessions, or any session after a direct WebMCP attempt.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
viewNo
sessionIdYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
dataNo
errorNo
warningsYes
artifactsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv0.11.0
    • changedInput schema / properties / view / oneOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "profile": {
      -        "const": "summary",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "profile"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "profile": {
      -        "const": "full",
      -        "type": "string"
      -      }
      -    },
      -    "required": [
      -      "profile"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "profile": {
      -        "const": "include",
      -        "type": "string"
      -      },
      -      "surfaces": {
      -        "items": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "maxItems": 13,
      -        "minItems": 1,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "profile",
      -      "surfaces"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "cursor": {
      -        "maxLength": 200,
      -        "minLength": 1,
      -        "type": "string"
      -      },
      -      "profile": {
      -        "const": "delta",
      -        "type": "string"
      -      },
      -      "surfaces": {
      -        "items": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "maxItems": 13,
      -        "minItems": 1,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "profile",
      -      "cursor"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "profile": {
      +        "const": "summary",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "profile"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "profile": {
      +        "const": "full",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "profile"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "profile": {
      +        "const": "include",
      +        "type": "string"
      +      },
      +      "surfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "interactiveElements",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 14,
      +        "minItems": 1,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "profile",
      +      "surfaces"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "cursor": {
      +        "maxLength": 200,
      +        "minLength": 1,
      +        "type": "string"
      +      },
      +      "profile": {
      +        "const": "delta",
      +        "type": "string"
      +      },
      +      "surfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "interactiveElements",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 14,
      +        "minItems": 1,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "profile",
      +      "cursor"
      +    ],
      +    "type": "object"
      +  }
      +]
    • addedOutput schema / definitions / CaptureDetailsOutput / properties / interactiveElements
      Added value: +{
      +  "anyOf": [
      +    {
      +      "$ref": "#/definitions/InteractiveElementsOutput"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ]
      +}
    • changedOutput schema / definitions / CaptureTruncation / properties / omittedSurfaces / items / enum
      Previous value: -[
      -  "dom",
      -  "console",
      -  "network",
      -  "debugger",
      -  "react",
      -  "angular",
      -  "vue",
      -  "next",
      -  "vite",
      -  "accessibility",
      -  "replay",
      -  "screenshot",
      -  "webmcp"
      -]New value: +[
      +  "dom",
      +  "console",
      +  "network",
      +  "debugger",
      +  "react",
      +  "angular",
      +  "vue",
      +  "next",
      +  "vite",
      +  "accessibility",
      +  "interactiveElements",
      +  "replay",
      +  "screenshot",
      +  "webmcp"
      +]
    • changedOutput schema / definitions / CaptureTruncation / properties / omittedSurfaces / maxItems
      Previous value: -13New value: +14
    • addedOutput schema / definitions / InteractiveElementsOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "elements": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "bounds": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "height": {
      +                    "minimum": 0,
      +                    "type": "number"
      +                  },
      +                  "width": {
      +                    "minimum": 0,
      +                    "type": "number"
      +                  },
      +                  "x": {
      +                    "type": "number"
      +                  },
      +                  "y": {
      +                    "type": "number"
      +                  }
      +                },
      +                "required": [
      +                  "x",
      +                  "y",
      +                  "width",
      +                  "height"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "checked": {
      +            "anyOf": [
      +              {
      +                "type": "boolean"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "enabled": {
      +            "type": "boolean"
      +          },
      +          "locator": {
      +            "$ref": "#/definitions/LocatorOutput"
      +          },
      +          "matchCount": {
      +            "maximum": 9007199254740991,
      +            "minimum": 0,
      +            "type": "integer"
      +          },
      +          "name": {
      +            "maxLength": 300,
      +            "type": "string"
      +          },
      +          "role": {
      +            "anyOf": [
      +              {
      +                "maxLength": 100,
      +                "type": "string"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "tag": {
      +            "maxLength": 40,
      +            "type": "string"
      +          },
      +          "text": {
      +            "maxLength": 300,
      +            "type": "string"
      +          },
      +          "uniqueAtCapture": {
      +            "type": "boolean"
      +          },
      +          "visible": {
      +            "type": "boolean"
      +          }
      +        },
      +        "required": [
      +          "tag",
      +          "role",
      +          "name",
      +          "text",
      +          "locator",
      +          "matchCount",
      +          "uniqueAtCapture",
      +          "visible",
      +          "enabled",
      +          "checked",
      +          "bounds"
      +        ],
      +        "type": "object"
      +      },
      +      "maxItems": 64,
      +      "type": "array"
      +    },
      +    "truncated": {
      +      "type": "boolean"
      +    },
      +    "warnings": {
      +      "items": {
      +        "maxLength": 500,
      +        "type": "string"
      +      },
      +      "maxItems": 20,
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "elements",
      +    "truncated",
      +    "warnings"
      +  ],
      +  "type": "object"
      +}
    • changedOutput schema / properties / data / oneOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "capturedAt": {
      -        "maxLength": 100,
      -        "type": "string"
      -      },
      -      "collection": {
      -        "additionalProperties": {
      -          "enum": [
      -            "fresh",
      -            "stale",
      -            "not-collected",
      -            "not-detected",
      -            "unavailable",
      -            "suppressed"
      -          ],
      -          "type": "string"
      -        },
      -        "propertyNames": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "required": [
      -          "dom",
      -          "console",
      -          "network",
      -          "debugger",
      -          "react",
      -          "angular",
      -          "vue",
      -          "next",
      -          "vite",
      -          "accessibility",
      -          "replay",
      -          "screenshot",
      -          "webmcp"
      -        ],
      -        "type": "object"
      -      },
      -      "cursor": {
      -        "format": "uuid",
      -        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -        "type": "string"
      -      },
      -      "profile": {
      -        "const": "summary",
      -        "type": "string"
      -      },
      -      "project": {
      -        "$ref": "#/definitions/CaptureProject"
      -      },
      -      "redaction": {
      -        "$ref": "#/definitions/CaptureRedaction"
      -      },
      -      "schemaVersion": {
      -        "const": 6,
      -        "type": "number"
      -      },
      -      "session": {
      -        "$ref": "#/definitions/CaptureSession"
      -      },
      -      "summary": {
      -        "$ref": "#/definitions/CaptureSummary"
      -      },
      -      "truncation": {
      -        "$ref": "#/definitions/CaptureTruncation"
      -      },
      -      "warnings": {
      -        "items": {
      -          "maxLength": 500,
      -          "type": "string"
      -        },
      -        "maxItems": 10,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "schemaVersion",
      -      "collection",
      -      "capturedAt",
      -      "cursor",
      -      "session",
      -      "project",
      -      "summary",
      -      "redaction",
      -      "warnings",
      -      "truncation",
      -      "profile"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "capturedAt": {
      -        "maxLength": 100,
      -        "type": "string"
      -      },
      -      "collection": {
      -        "additionalProperties": {
      -          "enum": [
      -            "fresh",
      -            "stale",
      -            "not-collected",
      -            "not-detected",
      -            "unavailable",
      -            "suppressed"
      -          ],
      -          "type": "string"
      -        },
      -        "propertyNames": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "required": [
      -          "dom",
      -          "console",
      -          "network",
      -          "debugger",
      -          "react",
      -          "angular",
      -          "vue",
      -          "next",
      -          "vite",
      -          "accessibility",
      -          "replay",
      -          "screenshot",
      -          "webmcp"
      -        ],
      -        "type": "object"
      -      },
      -      "cursor": {
      -        "format": "uuid",
      -        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -        "type": "string"
      -      },
      -      "details": {
      -        "$ref": "#/definitions/CaptureDetailsOutput"
      -      },
      -      "profile": {
      -        "const": "full",
      -        "type": "string"
      -      },
      -      "project": {
      -        "$ref": "#/definitions/CaptureProject"
      -      },
      -      "redaction": {
      -        "$ref": "#/definitions/CaptureRedaction"
      -      },
      -      "schemaVersion": {
      -        "const": 6,
      -        "type": "number"
      -      },
      -      "session": {
      -        "$ref": "#/definitions/CaptureSession"
      -      },
      -      "summary": {
      -        "$ref": "#/definitions/CaptureSummary"
      -      },
      -      "truncation": {
      -        "$ref": "#/definitions/CaptureTruncation"
      -      },
      -      "warnings": {
      -        "items": {
      -          "maxLength": 500,
      -          "type": "string"
      -        },
      -        "maxItems": 10,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "schemaVersion",
      -      "collection",
      -      "capturedAt",
      -      "cursor",
      -      "session",
      -      "project",
      -      "summary",
      -      "redaction",
      -      "warnings",
      -      "truncation",
      -      "profile",
      -      "details"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "capturedAt": {
      -        "maxLength": 100,
      -        "type": "string"
      -      },
      -      "collection": {
      -        "additionalProperties": {
      -          "enum": [
      -            "fresh",
      -            "stale",
      -            "not-collected",
      -            "not-detected",
      -            "unavailable",
      -            "suppressed"
      -          ],
      -          "type": "string"
      -        },
      -        "propertyNames": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "required": [
      -          "dom",
      -          "console",
      -          "network",
      -          "debugger",
      -          "react",
      -          "angular",
      -          "vue",
      -          "next",
      -          "vite",
      -          "accessibility",
      -          "replay",
      -          "screenshot",
      -          "webmcp"
      -        ],
      -        "type": "object"
      -      },
      -      "cursor": {
      -        "format": "uuid",
      -        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -        "type": "string"
      -      },
      -      "details": {
      -        "$ref": "#/definitions/CaptureDetailsOutput"
      -      },
      -      "includedSurfaces": {
      -        "items": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "maxItems": 13,
      -        "minItems": 1,
      -        "type": "array"
      -      },
      -      "profile": {
      -        "const": "include",
      -        "type": "string"
      -      },
      -      "project": {
      -        "$ref": "#/definitions/CaptureProject"
      -      },
      -      "redaction": {
      -        "$ref": "#/definitions/CaptureRedaction"
      -      },
      -      "schemaVersion": {
      -        "const": 6,
      -        "type": "number"
      -      },
      -      "session": {
      -        "$ref": "#/definitions/CaptureSession"
      -      },
      -      "summary": {
      -        "$ref": "#/definitions/CaptureSummary"
      -      },
      -      "truncation": {
      -        "$ref": "#/definitions/CaptureTruncation"
      -      },
      -      "warnings": {
      -        "items": {
      -          "maxLength": 500,
      -          "type": "string"
      -        },
      -        "maxItems": 10,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "schemaVersion",
      -      "collection",
      -      "capturedAt",
      -      "cursor",
      -      "session",
      -      "project",
      -      "summary",
      -      "redaction",
      -      "warnings",
      -      "truncation",
      -      "profile",
      -      "includedSurfaces",
      -      "details"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "capturedAt": {
      -        "maxLength": 100,
      -        "type": "string"
      -      },
      -      "changedSurfaces": {
      -        "items": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "maxItems": 13,
      -        "type": "array"
      -      },
      -      "collection": {
      -        "additionalProperties": {
      -          "enum": [
      -            "fresh",
      -            "stale",
      -            "not-collected",
      -            "not-detected",
      -            "unavailable",
      -            "suppressed"
      -          ],
      -          "type": "string"
      -        },
      -        "propertyNames": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "required": [
      -          "dom",
      -          "console",
      -          "network",
      -          "debugger",
      -          "react",
      -          "angular",
      -          "vue",
      -          "next",
      -          "vite",
      -          "accessibility",
      -          "replay",
      -          "screenshot",
      -          "webmcp"
      -        ],
      -        "type": "object"
      -      },
      -      "cursor": {
      -        "format": "uuid",
      -        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -        "type": "string"
      -      },
      -      "details": {
      -        "$ref": "#/definitions/CaptureDetailsOutput"
      -      },
      -      "fromCursor": {
      -        "maxLength": 200,
      -        "type": "string"
      -      },
      -      "profile": {
      -        "const": "delta",
      -        "type": "string"
      -      },
      -      "project": {
      -        "$ref": "#/definitions/CaptureProject"
      -      },
      -      "redaction": {
      -        "$ref": "#/definitions/CaptureRedaction"
      -      },
      -      "schemaVersion": {
      -        "const": 6,
      -        "type": "number"
      -      },
      -      "session": {
      -        "$ref": "#/definitions/CaptureSession"
      -      },
      -      "summary": {
      -        "$ref": "#/definitions/CaptureSummary"
      -      },
      -      "truncation": {
      -        "$ref": "#/definitions/CaptureTruncation"
      -      },
      -      "unchangedSurfaces": {
      -        "items": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "maxItems": 13,
      -        "type": "array"
      -      },
      -      "warnings": {
      -        "items": {
      -          "maxLength": 500,
      -          "type": "string"
      -        },
      -        "maxItems": 10,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "schemaVersion",
      -      "collection",
      -      "capturedAt",
      -      "cursor",
      -      "session",
      -      "project",
      -      "summary",
      -      "redaction",
      -      "warnings",
      -      "truncation",
      -      "profile",
      -      "fromCursor",
      -      "changedSurfaces",
      -      "unchangedSurfaces",
      -      "details"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "collection": {
      +        "additionalProperties": {
      +          "enum": [
      +            "fresh",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable",
      +            "suppressed"
      +          ],
      +          "type": "string"
      +        },
      +        "propertyNames": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "interactiveElements",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "required": [
      +          "dom",
      +          "console",
      +          "network",
      +          "debugger",
      +          "react",
      +          "angular",
      +          "vue",
      +          "next",
      +          "vite",
      +          "accessibility",
      +          "interactiveElements",
      +          "replay",
      +          "screenshot",
      +          "webmcp"
      +        ],
      +        "type": "object"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "profile": {
      +        "const": "summary",
      +        "type": "string"
      +      },
      +      "project": {
      +        "$ref": "#/definitions/CaptureProject"
      +      },
      +      "redaction": {
      +        "$ref": "#/definitions/CaptureRedaction"
      +      },
      +      "schemaVersion": {
      +        "const": 6,
      +        "type": "number"
      +      },
      +      "session": {
      +        "$ref": "#/definitions/CaptureSession"
      +      },
      +      "summary": {
      +        "$ref": "#/definitions/CaptureSummary"
      +      },
      +      "truncation": {
      +        "$ref": "#/definitions/CaptureTruncation"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "collection",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "collection": {
      +        "additionalProperties": {
      +          "enum": [
      +            "fresh",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable",
      +            "suppressed"
      +          ],
      +          "type": "string"
      +        },
      +        "propertyNames": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "interactiveElements",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "required": [
      +          "dom",
      +          "console",
      +          "network",
      +          "debugger",
      +          "react",
      +          "angular",
      +          "vue",
      +          "next",
      +          "vite",
      +          "accessibility",
      +          "interactiveElements",
      +          "replay",
      +          "screenshot",
      +          "webmcp"
      +        ],
      +        "type": "object"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "details": {
      +        "$ref": "#/definitions/CaptureDetailsOutput"
      +      },
      +      "profile": {
      +        "const": "full",
      +        "type": "string"
      +      },
      +      "project": {
      +        "$ref": "#/definitions/CaptureProject"
      +      },
      +      "redaction": {
      +        "$ref": "#/definitions/CaptureRedaction"
      +      },
      +      "schemaVersion": {
      +        "const": 6,
      +        "type": "number"
      +      },
      +      "session": {
      +        "$ref": "#/definitions/CaptureSession"
      +      },
      +      "summary": {
      +        "$ref": "#/definitions/CaptureSummary"
      +      },
      +      "truncation": {
      +        "$ref": "#/definitions/CaptureTruncation"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "collection",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile",
      +      "details"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "collection": {
      +        "additionalProperties": {
      +          "enum": [
      +            "fresh",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable",
      +            "suppressed"
      +          ],
      +          "type": "string"
      +        },
      +        "propertyNames": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "interactiveElements",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "required": [
      +          "dom",
      +          "console",
      +          "network",
      +          "debugger",
      +          "react",
      +          "angular",
      +          "vue",
      +          "next",
      +          "vite",
      +          "accessibility",
      +          "interactiveElements",
      +          "replay",
      +          "screenshot",
      +          "webmcp"
      +        ],
      +        "type": "object"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "details": {
      +        "$ref": "#/definitions/CaptureDetailsOutput"
      +      },
      +      "includedSurfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "interactiveElements",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 14,
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "profile": {
      +        "const": "include",
      +        "type": "string"
      +      },
      +      "project": {
      +        "$ref": "#/definitions/CaptureProject"
      +      },
      +      "redaction": {
      +        "$ref": "#/definitions/CaptureRedaction"
      +      },
      +      "schemaVersion": {
      +        "const": 6,
      +        "type": "number"
      +      },
      +      "session": {
      +        "$ref": "#/definitions/CaptureSession"
      +      },
      +      "summary": {
      +        "$ref": "#/definitions/CaptureSummary"
      +      },
      +      "truncation": {
      +        "$ref": "#/definitions/CaptureTruncation"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "collection",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile",
      +      "includedSurfaces",
      +      "details"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "changedSurfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "interactiveElements",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 14,
      +        "type": "array"
      +      },
      +      "collection": {
      +        "additionalProperties": {
      +          "enum": [
      +            "fresh",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable",
      +            "suppressed"
      +          ],
      +          "type": "string"
      +        },
      +        "propertyNames": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "interactiveElements",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "required": [
      +          "dom",
      +          "console",
      +          "network",
      +          "debugger",
      +          "react",
      +          "angular",
      +          "vue",
      +          "next",
      +          "vite",
      +          "accessibility",
      +          "interactiveElements",
      +          "replay",
      +          "screenshot",
      +          "webmcp"
      +        ],
      +        "type": "object"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "details": {
      +        "$ref": "#/definitions/CaptureDetailsOutput"
      +      },
      +      "fromCursor": {
      +        "maxLength": 200,
      +        "type": "string"
      +      },
      +      "profile": {
      +        "const": "delta",
      +        "type": "string"
      +      },
      +      "project": {
      +        "$ref": "#/definitions/CaptureProject"
      +      },
      +      "redaction": {
      +        "$ref": "#/definitions/CaptureRedaction"
      +      },
      +      "schemaVersion": {
      +        "const": 6,
      +        "type": "number"
      +      },
      +      "session": {
      +        "$ref": "#/definitions/CaptureSession"
      +      },
      +      "summary": {
      +        "$ref": "#/definitions/CaptureSummary"
      +      },
      +      "truncation": {
      +        "$ref": "#/definitions/CaptureTruncation"
      +      },
      +      "unchangedSurfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "interactiveElements",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 14,
      +        "type": "array"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "collection",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile",
      +      "fromCursor",
      +      "changedSurfaces",
      +      "unchangedSurfaces",
      +      "details"
      +    ],
      +    "type": "object"
      +  }
      +]
  2. Changed31 schema fields changedv0.10.0
    • addedOutput schema / definitions / BrowserRuntimeCapabilitiesOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "accessibility": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "actions": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "authSeeding": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "browser": {
      +      "enum": [
      +        "chromium",
      +        "safari"
      +      ],
      +      "type": "string"
      +    },
      +    "console": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "dom": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "evaluation": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "javascriptDebugger": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "locators": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "css": {
      +          "$ref": "#/definitions/RuntimeCapabilityOutput"
      +        },
      +        "semantic": {
      +          "$ref": "#/definitions/RuntimeCapabilityOutput"
      +        }
      +      },
      +      "required": [
      +        "css",
      +        "semantic"
      +      ],
      +      "type": "object"
      +    },
      +    "network": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "pageRuntimeEnrichment": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "schemaVersion": {
      +      "const": 2,
      +      "type": "number"
      +    },
      +    "screenshots": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "tlsBypass": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "transport": {
      +      "enum": [
      +        "chromium-launch",
      +        "chromium-cdp-attach",
      +        "safari-webdriver"
      +      ],
      +      "type": "string"
      +    },
      +    "viewportMatrix": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    },
      +    "webmcp": {
      +      "$ref": "#/definitions/RuntimeCapabilityOutput"
      +    }
      +  },
      +  "required": [
      +    "schemaVersion",
      +    "browser",
      +    "transport",
      +    "actions",
      +    "locators",
      +    "dom",
      +    "console",
      +    "network",
      +    "screenshots",
      +    "javascriptDebugger",
      +    "evaluation",
      +    "accessibility",
      +    "pageRuntimeEnrichment",
      +    "viewportMatrix",
      +    "tlsBypass",
      +    "authSeeding",
      +    "webmcp"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / CaptureDetailsOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "accessibility": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/JsonValue"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "angular": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/JsonValue"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "console": {
      +      "items": {
      +        "$ref": "#/definitions/ConsoleEntryOutput"
      +      },
      +      "maxItems": 100,
      +      "type": "array"
      +    },
      +    "debugger": {
      +      "allOf": [
      +        {
      +          "$ref": "#/definitions/DebuggerSnapshotOutput"
      +        }
      +      ]
      +    },
      +    "dom": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "bodyText": {
      +          "maxLength": 4000,
      +          "type": "string"
      +        },
      +        "elements": {
      +          "items": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "id": {
      +                "anyOf": [
      +                  {
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "role": {
      +                "anyOf": [
      +                  {
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "tag": {
      +                "type": "string"
      +              },
      +              "text": {
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "tag",
      +              "id",
      +              "role",
      +              "text"
      +            ],
      +            "type": "object"
      +          },
      +          "maxItems": 50,
      +          "type": "array"
      +        }
      +      },
      +      "required": [
      +        "bodyText",
      +        "elements"
      +      ],
      +      "type": "object"
      +    },
      +    "network": {
      +      "items": {
      +        "$ref": "#/definitions/NetworkEntryOutput"
      +      },
      +      "maxItems": 100,
      +      "type": "array"
      +    },
      +    "next": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/JsonValue"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "react": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/JsonValue"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "replay": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "enabled": {
      +          "const": true,
      +          "type": "boolean"
      +        },
      +        "frames": {
      +          "items": {
      +            "$ref": "#/definitions/ReplayFrameOutput"
      +          },
      +          "maxItems": 8,
      +          "type": "array"
      +        },
      +        "maxFrames": {
      +          "exclusiveMinimum": 0,
      +          "maximum": 9007199254740991,
      +          "type": "integer"
      +        },
      +        "restorable": {
      +          "type": "boolean"
      +        },
      +        "restoreBlockedReason": {
      +          "anyOf": [
      +            {
      +              "maxLength": 100,
      +              "type": "string"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ]
      +        },
      +        "truncated": {
      +          "type": "boolean"
      +        }
      +      },
      +      "required": [
      +        "enabled",
      +        "maxFrames",
      +        "truncated",
      +        "restorable",
      +        "restoreBlockedReason",
      +        "frames"
      +      ],
      +      "type": "object"
      +    },
      +    "screenshot": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "status": {
      +          "enum": [
      +            "captured",
      +            "suppressed",
      +            "unavailable"
      +          ],
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "status"
      +      ],
      +      "type": "object"
      +    },
      +    "vite": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/JsonValue"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "vue": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/JsonValue"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "webmcp": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": false,
      +          "properties": {
      +            "observedAt": {
      +              "maxLength": 100,
      +              "type": "string"
      +            },
      +            "provenance": {
      +              "const": "webmcp-page-api",
      +              "type": "string"
      +            },
      +            "tools": {
      +              "items": {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "annotations": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "readOnlyHint": {
      +                        "anyOf": [
      +                          {
      +                            "type": "boolean"
      +                          },
      +                          {
      +                            "type": "null"
      +                          }
      +                        ]
      +                      },
      +                      "untrustedContentHint": {
      +                        "anyOf": [
      +                          {
      +                            "type": "boolean"
      +                          },
      +                          {
      +                            "type": "null"
      +                          }
      +                        ]
      +                      }
      +                    },
      +                    "required": [
      +                      "readOnlyHint",
      +                      "untrustedContentHint"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "description": {
      +                    "maxLength": 500,
      +                    "type": "string"
      +                  },
      +                  "inputSchemaJson": {
      +                    "anyOf": [
      +                      {
      +                        "maxLength": 8192,
      +                        "type": "string"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  },
      +                  "name": {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  "origin": {
      +                    "maxLength": 2048,
      +                    "type": "string"
      +                  },
      +                  "title": {
      +                    "anyOf": [
      +                      {
      +                        "maxLength": 200,
      +                        "type": "string"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  },
      +                  "untrusted": {
      +                    "const": true,
      +                    "type": "boolean"
      +                  }
      +                },
      +                "required": [
      +                  "origin",
      +                  "name",
      +                  "title",
      +                  "description",
      +                  "inputSchemaJson",
      +                  "annotations",
      +                  "untrusted"
      +                ],
      +                "type": "object"
      +              },
      +              "maxItems": 16,
      +              "type": "array"
      +            },
      +            "total": {
      +              "maximum": 9007199254740991,
      +              "minimum": 0,
      +              "type": "integer"
      +            },
      +            "truncated": {
      +              "type": "boolean"
      +            }
      +          },
      +          "required": [
      +            "provenance",
      +            "observedAt",
      +            "total",
      +            "truncated",
      +            "tools"
      +          ],
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / definitions / CaptureProject
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "ambiguous": {
      +      "type": "boolean"
      +    },
      +    "confidence": {
      +      "enum": [
      +        "high",
      +        "medium",
      +        "low",
      +        "none"
      +      ],
      +      "type": "string"
      +    },
      +    "frameworks": {
      +      "items": {
      +        "enum": [
      +          "vanilla",
      +          "react",
      +          "angular",
      +          "vue",
      +          "vite",
      +          "next"
      +        ],
      +        "type": "string"
      +      },
      +      "maxItems": 6,
      +      "type": "array"
      +    },
      +    "projectCapabilities": {
      +      "$ref": "#/definitions/ProjectCapabilitiesOutput"
      +    }
      +  },
      +  "required": [
      +    "frameworks",
      +    "confidence",
      +    "ambiguous",
      +    "projectCapabilities"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / CaptureRedaction
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "applied": {
      +      "const": true,
      +      "type": "boolean"
      +    },
      +    "policy": {
      +      "const": "default-sensitive-fields",
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "applied",
      +    "policy"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / CaptureSession
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "id": {
      +      "format": "uuid",
      +      "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +      "type": "string"
      +    },
      +    "projectCapabilities": {
      +      "$ref": "#/definitions/ProjectCapabilitiesOutput"
      +    },
      +    "runtimeCapabilities": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/BrowserRuntimeCapabilitiesOutput"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "status": {
      +      "enum": [
      +        "starting",
      +        "ready",
      +        "paused",
      +        "failed",
      +        "closed"
      +      ],
      +      "type": "string"
      +    },
      +    "target": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/CaptureTargetOutput"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "url": {
      +      "maxLength": 2560,
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "id",
      +    "url",
      +    "status",
      +    "target",
      +    "projectCapabilities",
      +    "runtimeCapabilities"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / CaptureSummary
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "bodyText": {
      +      "maxLength": 1000,
      +      "type": "string"
      +    },
      +    "console": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "errors": {
      +          "maximum": 9007199254740991,
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        "latestErrors": {
      +          "items": {
      +            "$ref": "#/definitions/ConsoleEntryOutput"
      +          },
      +          "maxItems": 3,
      +          "type": "array"
      +        },
      +        "total": {
      +          "maximum": 9007199254740991,
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        "warnings": {
      +          "maximum": 9007199254740991,
      +          "minimum": 0,
      +          "type": "integer"
      +        }
      +      },
      +      "required": [
      +        "total",
      +        "errors",
      +        "warnings",
      +        "latestErrors"
      +      ],
      +      "type": "object"
      +    },
      +    "debugger": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "breakpoints": {
      +          "maximum": 9007199254740991,
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        "callFrames": {
      +          "maximum": 9007199254740991,
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        "paused": {
      +          "type": "boolean"
      +        },
      +        "reason": {
      +          "anyOf": [
      +            {
      +              "maxLength": 500,
      +              "type": "string"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ]
      +        }
      +      },
      +      "required": [
      +        "paused",
      +        "reason",
      +        "callFrames",
      +        "breakpoints"
      +      ],
      +      "type": "object"
      +    },
      +    "domElements": {
      +      "maximum": 9007199254740991,
      +      "minimum": 0,
      +      "type": "integer"
      +    },
      +    "network": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "failed": {
      +          "maximum": 9007199254740991,
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        "latestFailures": {
      +          "items": {
      +            "$ref": "#/definitions/NetworkEntryOutput"
      +          },
      +          "maxItems": 3,
      +          "type": "array"
      +        },
      +        "pending": {
      +          "maximum": 9007199254740991,
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        "total": {
      +          "maximum": 9007199254740991,
      +          "minimum": 0,
      +          "type": "integer"
      +        }
      +      },
      +      "required": [
      +        "total",
      +        "failed",
      +        "pending",
      +        "latestFailures"
      +      ],
      +      "type": "object"
      +    },
      +    "observations": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": false,
      +          "properties": {
      +            "console": {
      +              "$ref": "#/definitions/JsonValue"
      +            },
      +            "dom": {
      +              "$ref": "#/definitions/JsonValue"
      +            },
      +            "network": {
      +              "allOf": [
      +                {
      +                  "$ref": "#/definitions/JsonValue"
      +                }
      +              ]
      +            },
      +            "url": {
      +              "$ref": "#/definitions/JsonValue"
      +            }
      +          },
      +          "required": [
      +            "url",
      +            "dom",
      +            "console"
      +          ],
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "replay": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "frames": {
      +          "maximum": 9007199254740991,
      +          "minimum": 0,
      +          "type": "integer"
      +        },
      +        "newestIndex": {
      +          "anyOf": [
      +            {
      +              "maximum": 9007199254740991,
      +              "minimum": -9007199254740991,
      +              "type": "integer"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ]
      +        },
      +        "oldestIndex": {
      +          "anyOf": [
      +            {
      +              "maximum": 9007199254740991,
      +              "minimum": -9007199254740991,
      +              "type": "integer"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ]
      +        },
      +        "restorable": {
      +          "type": "boolean"
      +        },
      +        "restoreBlockedReason": {
      +          "anyOf": [
      +            {
      +              "maxLength": 100,
      +              "type": "string"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ]
      +        },
      +        "truncated": {
      +          "type": "boolean"
      +        }
      +      },
      +      "required": [
      +        "frames",
      +        "truncated",
      +        "oldestIndex",
      +        "newestIndex",
      +        "restorable",
      +        "restoreBlockedReason"
      +      ],
      +      "type": "object"
      +    },
      +    "runtimes": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "accessibility": {
      +          "enum": [
      +            "present",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable"
      +          ],
      +          "type": "string"
      +        },
      +        "angular": {
      +          "enum": [
      +            "present",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable"
      +          ],
      +          "type": "string"
      +        },
      +        "next": {
      +          "enum": [
      +            "present",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable"
      +          ],
      +          "type": "string"
      +        },
      +        "react": {
      +          "enum": [
      +            "present",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable"
      +          ],
      +          "type": "string"
      +        },
      +        "vite": {
      +          "enum": [
      +            "present",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable"
      +          ],
      +          "type": "string"
      +        },
      +        "vue": {
      +          "enum": [
      +            "present",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable"
      +          ],
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "react",
      +        "angular",
      +        "vue",
      +        "next",
      +        "vite",
      +        "accessibility"
      +      ],
      +      "type": "object"
      +    },
      +    "title": {
      +      "maxLength": 300,
      +      "type": "string"
      +    },
      +    "viewport": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": false,
      +          "properties": {
      +            "height": {
      +              "maximum": 9007199254740991,
      +              "minimum": -9007199254740991,
      +              "type": "integer"
      +            },
      +            "width": {
      +              "maximum": 9007199254740991,
      +              "minimum": -9007199254740991,
      +              "type": "integer"
      +            }
      +          },
      +          "required": [
      +            "width",
      +            "height"
      +          ],
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "webmcp": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "callableTools": {
      +          "anyOf": [
      +            {
      +              "maximum": 9007199254740991,
      +              "minimum": 0,
      +              "type": "integer"
      +            },
      +            {
      +              "type": "null"
      +            }
      +          ]
      +        },
      +        "state": {
      +          "enum": [
      +            "supported",
      +            "degraded",
      +            "unsupported"
      +          ],
      +          "type": "string"
      +        },
      +        "truncated": {
      +          "type": "boolean"
      +        }
      +      },
      +      "required": [
      +        "state",
      +        "callableTools",
      +        "truncated"
      +      ],
      +      "type": "object"
      +    }
      +  },
      +  "required": [
      +    "title",
      +    "viewport",
      +    "bodyText",
      +    "domElements",
      +    "console",
      +    "network",
      +    "debugger",
      +    "runtimes",
      +    "replay",
      +    "webmcp",
      +    "observations"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / CaptureTargetOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "browser": {
      +      "enum": [
      +        "chromium",
      +        "safari"
      +      ],
      +      "type": "string"
      +    },
      +    "isolated": {
      +      "type": "boolean"
      +    },
      +    "mode": {
      +      "enum": [
      +        "launch",
      +        "attach",
      +        "webdriver"
      +      ],
      +      "type": "string"
      +    },
      +    "remote": {
      +      "type": "boolean"
      +    },
      +    "schemaVersion": {
      +      "const": 1,
      +      "type": "number"
      +    },
      +    "viewport": {
      +      "anyOf": [
      +        {
      +          "additionalProperties": false,
      +          "properties": {
      +            "height": {
      +              "maximum": 9007199254740991,
      +              "minimum": -9007199254740991,
      +              "type": "integer"
      +            },
      +            "width": {
      +              "maximum": 9007199254740991,
      +              "minimum": -9007199254740991,
      +              "type": "integer"
      +            }
      +          },
      +          "required": [
      +            "width",
      +            "height"
      +          ],
      +          "type": "object"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    }
      +  },
      +  "required": [
      +    "schemaVersion",
      +    "browser",
      +    "remote",
      +    "viewport",
      +    "isolated"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / CaptureTruncation
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "applied": {
      +      "type": "boolean"
      +    },
      +    "omittedSurfaces": {
      +      "items": {
      +        "enum": [
      +          "dom",
      +          "console",
      +          "network",
      +          "debugger",
      +          "react",
      +          "angular",
      +          "vue",
      +          "next",
      +          "vite",
      +          "accessibility",
      +          "replay",
      +          "screenshot",
      +          "webmcp"
      +        ],
      +        "type": "string"
      +      },
      +      "maxItems": 13,
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "applied",
      +    "omittedSurfaces"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / ConsoleEntryOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "column": {
      +      "maximum": 9007199254740991,
      +      "minimum": -9007199254740991,
      +      "type": "integer"
      +    },
      +    "level": {
      +      "enum": [
      +        "log",
      +        "info",
      +        "debug",
      +        "warning",
      +        "error",
      +        "pageerror"
      +      ],
      +      "type": "string"
      +    },
      +    "line": {
      +      "maximum": 9007199254740991,
      +      "minimum": -9007199254740991,
      +      "type": "integer"
      +    },
      +    "text": {
      +      "maxLength": 2000,
      +      "type": "string"
      +    },
      +    "url": {
      +      "maxLength": 2560,
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "level",
      +    "text"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / DebuggerSnapshotOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "breakpoints": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "column": {
      +            "anyOf": [
      +              {
      +                "maximum": 9007199254740991,
      +                "minimum": -9007199254740991,
      +                "type": "integer"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "id": {
      +            "maxLength": 500,
      +            "type": "string"
      +          },
      +          "line": {
      +            "maximum": 9007199254740991,
      +            "minimum": -9007199254740991,
      +            "type": "integer"
      +          },
      +          "sourceUrl": {
      +            "maxLength": 2560,
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "id",
      +          "sourceUrl",
      +          "line",
      +          "column"
      +        ],
      +        "type": "object"
      +      },
      +      "maxItems": 100,
      +      "type": "array"
      +    },
      +    "callFrames": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "column": {
      +            "maximum": 9007199254740991,
      +            "minimum": -9007199254740991,
      +            "type": "integer"
      +          },
      +          "functionName": {
      +            "maxLength": 500,
      +            "type": "string"
      +          },
      +          "line": {
      +            "maximum": 9007199254740991,
      +            "minimum": -9007199254740991,
      +            "type": "integer"
      +          },
      +          "locals": {
      +            "additionalProperties": {
      +              "$ref": "#/definitions/JsonValue"
      +            },
      +            "propertyNames": {
      +              "type": "string"
      +            },
      +            "type": "object"
      +          },
      +          "scopeNames": {
      +            "items": {
      +              "maxLength": 100,
      +              "type": "string"
      +            },
      +            "maxItems": 50,
      +            "type": "array"
      +          },
      +          "url": {
      +            "maxLength": 2560,
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "functionName",
      +          "url",
      +          "line",
      +          "column",
      +          "scopeNames",
      +          "locals"
      +        ],
      +        "type": "object"
      +      },
      +      "maxItems": 50,
      +      "type": "array"
      +    },
      +    "paused": {
      +      "type": "boolean"
      +    },
      +    "reason": {
      +      "anyOf": [
      +        {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    }
      +  },
      +  "required": [
      +    "paused",
      +    "reason",
      +    "callFrames",
      +    "breakpoints"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / JsonValue
      Added value: +{
      +  "allOf": [
      +    {
      +      "$ref": "#/definitions/__schema0"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / LocatorOutput
      Added value: +{
      +  "oneOf": [
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "kind": {
      +          "const": "css",
      +          "type": "string"
      +        },
      +        "value": {
      +          "maxLength": 500,
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "kind",
      +        "value"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "kind": {
      +          "const": "role",
      +          "type": "string"
      +        },
      +        "name": {
      +          "maxLength": 300,
      +          "type": "string"
      +        },
      +        "role": {
      +          "maxLength": 100,
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "kind",
      +        "role"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "kind": {
      +          "const": "text",
      +          "type": "string"
      +        },
      +        "text": {
      +          "maxLength": 500,
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "kind",
      +        "text"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "kind": {
      +          "const": "label",
      +          "type": "string"
      +        },
      +        "text": {
      +          "maxLength": 500,
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "kind",
      +        "text"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "kind": {
      +          "const": "testId",
      +          "type": "string"
      +        },
      +        "value": {
      +          "maxLength": 500,
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "kind",
      +        "value"
      +      ],
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / NetworkEntryOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "failure": {
      +      "maxLength": 500,
      +      "type": "string"
      +    },
      +    "method": {
      +      "maxLength": 50,
      +      "type": "string"
      +    },
      +    "nextActionId": {
      +      "maxLength": 200,
      +      "type": "string"
      +    },
      +    "ok": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "requestId": {
      +      "maxLength": 500,
      +      "type": "string"
      +    },
      +    "resourceType": {
      +      "maxLength": 100,
      +      "type": "string"
      +    },
      +    "status": {
      +      "anyOf": [
      +        {
      +          "maximum": 9007199254740991,
      +          "minimum": -9007199254740991,
      +          "type": "integer"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "url": {
      +      "maxLength": 2560,
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "requestId",
      +    "method",
      +    "url",
      +    "resourceType",
      +    "status",
      +    "ok"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / ProjectCapabilitiesOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "angular": {
      +      "type": "boolean"
      +    },
      +    "browserTarget": {
      +      "type": "boolean"
      +    },
      +    "next": {
      +      "type": "boolean"
      +    },
      +    "react": {
      +      "type": "boolean"
      +    },
      +    "serverRuntime": {
      +      "type": "boolean"
      +    },
      +    "vite": {
      +      "type": "boolean"
      +    },
      +    "vue": {
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "browserTarget",
      +    "react",
      +    "angular",
      +    "vue",
      +    "vite",
      +    "next",
      +    "serverRuntime"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / ReplayFrameOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "action": {
      +      "anyOf": [
      +        {
      +          "oneOf": [
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "kind": {
      +                  "const": "navigate",
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "maxLength": 2560,
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "kind",
      +                "url"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "kind": {
      +                  "const": "click",
      +                  "type": "string"
      +                },
      +                "locator": {
      +                  "$ref": "#/definitions/LocatorOutput"
      +                }
      +              },
      +              "required": [
      +                "kind",
      +                "locator"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "kind": {
      +                  "const": "fill",
      +                  "type": "string"
      +                },
      +                "locator": {
      +                  "$ref": "#/definitions/LocatorOutput"
      +                },
      +                "value": {
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "kind",
      +                "locator",
      +                "value"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "key": {
      +                  "maxLength": 40,
      +                  "type": "string"
      +                },
      +                "kind": {
      +                  "const": "press",
      +                  "type": "string"
      +                },
      +                "locator": {
      +                  "$ref": "#/definitions/LocatorOutput"
      +                }
      +              },
      +              "required": [
      +                "kind",
      +                "locator",
      +                "key"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "kind": {
      +                  "const": "select",
      +                  "type": "string"
      +                },
      +                "locator": {
      +                  "$ref": "#/definitions/LocatorOutput"
      +                },
      +                "value": {
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "kind",
      +                "locator",
      +                "value"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "checked": {
      +                  "type": "boolean"
      +                },
      +                "kind": {
      +                  "const": "check",
      +                  "type": "string"
      +                },
      +                "locator": {
      +                  "$ref": "#/definitions/LocatorOutput"
      +                }
      +              },
      +              "required": [
      +                "kind",
      +                "locator",
      +                "checked"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "kind": {
      +                  "const": "hover",
      +                  "type": "string"
      +                },
      +                "locator": {
      +                  "$ref": "#/definitions/LocatorOutput"
      +                }
      +              },
      +              "required": [
      +                "kind",
      +                "locator"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "kind": {
      +                  "const": "scroll",
      +                  "type": "string"
      +                },
      +                "locator": {
      +                  "$ref": "#/definitions/LocatorOutput"
      +                }
      +              },
      +              "required": [
      +                "kind",
      +                "locator"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "expected": {
      +                  "anyOf": [
      +                    {
      +                      "type": "number"
      +                    },
      +                    {
      +                      "type": "boolean"
      +                    },
      +                    {
      +                      "type": "string"
      +                    },
      +                    {
      +                      "type": "null"
      +                    }
      +                  ]
      +                },
      +                "kind": {
      +                  "const": "wait",
      +                  "type": "string"
      +                },
      +                "locator": {
      +                  "$ref": "#/definitions/LocatorOutput"
      +                },
      +                "property": {
      +                  "enum": [
      +                    "count",
      +                    "visible",
      +                    "enabled",
      +                    "checked",
      +                    "text"
      +                  ],
      +                  "type": "string"
      +                },
      +                "timeoutMs": {
      +                  "maximum": 9007199254740991,
      +                  "minimum": -9007199254740991,
      +                  "type": "integer"
      +                }
      +              },
      +              "required": [
      +                "kind",
      +                "locator",
      +                "property",
      +                "expected"
      +              ],
      +              "type": "object"
      +            },
      +            {
      +              "additionalProperties": false,
      +              "properties": {
      +                "kind": {
      +                  "const": "reload",
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "kind"
      +              ],
      +              "type": "object"
      +            }
      +          ]
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "angular": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/JsonValue"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "attemptId": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "capturedAt": {
      +      "maxLength": 100,
      +      "type": "string"
      +    },
      +    "console": {
      +      "items": {
      +        "$ref": "#/definitions/ConsoleEntryOutput"
      +      },
      +      "maxItems": 20,
      +      "type": "array"
      +    },
      +    "debugger": {
      +      "$ref": "#/definitions/DebuggerSnapshotOutput"
      +    },
      +    "dom": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "bodyText": {
      +          "maxLength": 4000,
      +          "type": "string"
      +        },
      +        "elements": {
      +          "items": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "id": {
      +                "anyOf": [
      +                  {
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "role": {
      +                "anyOf": [
      +                  {
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "tag": {
      +                "type": "string"
      +              },
      +              "text": {
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "tag",
      +              "id",
      +              "role",
      +              "text"
      +            ],
      +            "type": "object"
      +          },
      +          "maxItems": 50,
      +          "type": "array"
      +        }
      +      },
      +      "required": [
      +        "bodyText",
      +        "elements"
      +      ],
      +      "type": "object"
      +    },
      +    "index": {
      +      "maximum": 9007199254740991,
      +      "minimum": 0,
      +      "type": "integer"
      +    },
      +    "network": {
      +      "items": {
      +        "$ref": "#/definitions/NetworkEntryOutput"
      +      },
      +      "maxItems": 20,
      +      "type": "array"
      +    },
      +    "react": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/JsonValue"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "title": {
      +      "maxLength": 300,
      +      "type": "string"
      +    },
      +    "trigger": {
      +      "enum": [
      +        "action",
      +        "capture"
      +      ],
      +      "type": "string"
      +    },
      +    "url": {
      +      "maxLength": 2560,
      +      "type": "string"
      +    },
      +    "vue": {
      +      "anyOf": [
      +        {
      +          "$ref": "#/definitions/JsonValue"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    }
      +  },
      +  "required": [
      +    "index",
      +    "attemptId",
      +    "capturedAt",
      +    "trigger",
      +    "action",
      +    "url",
      +    "title",
      +    "dom",
      +    "console",
      +    "network",
      +    "debugger",
      +    "react",
      +    "angular",
      +    "vue"
      +  ],
      +  "type": "object"
      +}
    • addedOutput schema / definitions / RuntimeCapabilityOutput
      Added value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "provenance": {
      +      "items": {
      +        "enum": [
      +          "playwright",
      +          "chromium-cdp",
      +          "safari-webdriver",
      +          "safari-bidi",
      +          "performance-resource-timing",
      +          "session-policy",
      +          "webmcp-page-api"
      +        ],
      +        "type": "string"
      +      },
      +      "maxItems": 2,
      +      "type": "array"
      +    },
      +    "reason": {
      +      "maxLength": 500,
      +      "type": "string"
      +    },
      +    "state": {
      +      "enum": [
      +        "supported",
      +        "degraded",
      +        "unsupported"
      +      ],
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "state",
      +    "provenance"
      +  ],
      +  "type": "object"
      +}
    • changedOutput schema / definitions / __schema0 / anyOf
      Previous value: -[
      -  {
      -    "type": "string"
      -  },
      -  {
      -    "type": "number"
      -  },
      -  {
      -    "type": "boolean"
      -  },
      -  {
      -    "type": "null"
      -  },
      -  {
      -    "items": {
      -      "$ref": "#/definitions/__schema0"
      -    },
      -    "type": "array"
      -  },
      -  {
      -    "additionalProperties": {
      -      "$ref": "#/definitions/__schema0"
      -    },
      -    "propertyNames": {
      -      "type": "string"
      -    },
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "number"
      +  },
      +  {
      +    "type": "boolean"
      +  },
      +  {
      +    "type": "null"
      +  },
      +  {
      +    "items": {
      +      "allOf": [
      +        {
      +          "$ref": "#/definitions/__schema0"
      +        }
      +      ]
      +    },
      +    "type": "array"
      +  },
      +  {
      +    "additionalProperties": {
      +      "allOf": [
      +        {
      +          "$ref": "#/definitions/__schema0"
      +        }
      +      ]
      +    },
      +    "propertyNames": {
      +      "type": "string"
      +    },
      +    "type": "object"
      +  }
      +]
    • removedOutput schema / definitions / __schema10
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema10"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema10"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema11
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema11"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema11"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema12
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema12"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema12"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema13
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema13"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema13"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema2
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema2"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema2"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema3
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema3"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema3"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema4
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema4"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema4"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema5
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema5"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema5"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema6
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema6"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema6"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema7
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema7"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema7"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema8
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema8"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema8"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • removedOutput schema / definitions / __schema9
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "number"
      -    },
      -    {
      -      "type": "boolean"
      -    },
      -    {
      -      "type": "null"
      -    },
      -    {
      -      "items": {
      -        "$ref": "#/definitions/__schema9"
      -      },
      -      "type": "array"
      -    },
      -    {
      -      "additionalProperties": {
      -        "$ref": "#/definitions/__schema9"
      -      },
      -      "propertyNames": {
      -        "type": "string"
      -      },
      -      "type": "object"
      -    }
      -  ]
      -}
    • changedOutput schema / properties / data / oneOf
      Previous value: -[
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "capturedAt": {
      -        "maxLength": 100,
      -        "type": "string"
      -      },
      -      "cursor": {
      -        "format": "uuid",
      -        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -        "type": "string"
      -      },
      -      "profile": {
      -        "const": "summary",
      -        "type": "string"
      -      },
      -      "project": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "ambiguous": {
      -            "type": "boolean"
      -          },
      -          "confidence": {
      -            "enum": [
      -              "high",
      -              "medium",
      -              "low",
      -              "none"
      -            ],
      -            "type": "string"
      -          },
      -          "frameworks": {
      -            "items": {
      -              "enum": [
      -                "vanilla",
      -                "react",
      -                "angular",
      -                "vue",
      -                "vite",
      -                "next"
      -              ],
      -              "type": "string"
      -            },
      -            "maxItems": 6,
      -            "type": "array"
      -          },
      -          "projectCapabilities": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "angular": {
      -                "type": "boolean"
      -              },
      -              "browserTarget": {
      -                "type": "boolean"
      -              },
      -              "next": {
      -                "type": "boolean"
      -              },
      -              "react": {
      -                "type": "boolean"
      -              },
      -              "serverRuntime": {
      -                "type": "boolean"
      -              },
      -              "vite": {
      -                "type": "boolean"
      -              },
      -              "vue": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "browserTarget",
      -              "react",
      -              "angular",
      -              "vue",
      -              "vite",
      -              "next",
      -              "serverRuntime"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "frameworks",
      -          "confidence",
      -          "ambiguous",
      -          "projectCapabilities"
      -        ],
      -        "type": "object"
      -      },
      -      "redaction": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "applied": {
      -            "const": true,
      -            "type": "boolean"
      -          },
      -          "policy": {
      -            "const": "default-sensitive-fields",
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "applied",
      -          "policy"
      -        ],
      -        "type": "object"
      -      },
      -      "schemaVersion": {
      -        "const": 5,
      -        "type": "number"
      -      },
      -      "session": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "id": {
      -            "format": "uuid",
      -            "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -            "type": "string"
      -          },
      -          "projectCapabilities": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "angular": {
      -                "type": "boolean"
      -              },
      -              "browserTarget": {
      -                "type": "boolean"
      -              },
      -              "next": {
      -                "type": "boolean"
      -              },
      -              "react": {
      -                "type": "boolean"
      -              },
      -              "serverRuntime": {
      -                "type": "boolean"
      -              },
      -              "vite": {
      -                "type": "boolean"
      -              },
      -              "vue": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "browserTarget",
      -              "react",
      -              "angular",
      -              "vue",
      -              "vite",
      -              "next",
      -              "serverRuntime"
      -            ],
      -            "type": "object"
      -          },
      -          "runtimeCapabilities": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "accessibility": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "actions": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "authSeeding": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "browser": {
      -                    "enum": [
      -                      "chromium",
      -                      "safari"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "console": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "dom": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "evaluation": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "javascriptDebugger": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "locators": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "css": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "provenance": {
      -                            "items": {
      -                              "enum": [
      -                                "playwright",
      -                                "chromium-cdp",
      -                                "safari-webdriver",
      -                                "safari-bidi",
      -                                "performance-resource-timing",
      -                                "session-policy",
      -                                "webmcp-page-api"
      -                              ],
      -                              "type": "string"
      -                            },
      -                            "maxItems": 2,
      -                            "type": "array"
      -                          },
      -                          "reason": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "state": {
      -                            "enum": [
      -                              "supported",
      -                              "degraded",
      -                              "unsupported"
      -                            ],
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "state",
      -                          "provenance"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "semantic": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "provenance": {
      -                            "items": {
      -                              "enum": [
      -                                "playwright",
      -                                "chromium-cdp",
      -                                "safari-webdriver",
      -                                "safari-bidi",
      -                                "performance-resource-timing",
      -                                "session-policy",
      -                                "webmcp-page-api"
      -                              ],
      -                              "type": "string"
      -                            },
      -                            "maxItems": 2,
      -                            "type": "array"
      -                          },
      -                          "reason": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "state": {
      -                            "enum": [
      -                              "supported",
      -                              "degraded",
      -                              "unsupported"
      -                            ],
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "state",
      -                          "provenance"
      -                        ],
      -                        "type": "object"
      -                      }
      -                    },
      -                    "required": [
      -                      "css",
      -                      "semantic"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "network": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "pageRuntimeEnrichment": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "schemaVersion": {
      -                    "const": 2,
      -                    "type": "number"
      -                  },
      -                  "screenshots": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "tlsBypass": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "transport": {
      -                    "enum": [
      -                      "chromium-launch",
      -                      "chromium-cdp-attach",
      -                      "safari-webdriver"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "viewportMatrix": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "webmcp": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  }
      -                },
      -                "required": [
      -                  "schemaVersion",
      -                  "browser",
      -                  "transport",
      -                  "actions",
      -                  "locators",
      -                  "dom",
      -                  "console",
      -                  "network",
      -                  "screenshots",
      -                  "javascriptDebugger",
      -                  "evaluation",
      -                  "accessibility",
      -                  "pageRuntimeEnrichment",
      -                  "viewportMatrix",
      -                  "tlsBypass",
      -                  "authSeeding",
      -                  "webmcp"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "status": {
      -            "enum": [
      -              "starting",
      -              "ready",
      -              "paused",
      -              "failed",
      -              "closed"
      -            ],
      -            "type": "string"
      -          },
      -          "target": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "browser": {
      -                    "enum": [
      -                      "chromium",
      -                      "safari"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "isolated": {
      -                    "type": "boolean"
      -                  },
      -                  "mode": {
      -                    "enum": [
      -                      "launch",
      -                      "attach",
      -                      "webdriver"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "remote": {
      -                    "type": "boolean"
      -                  },
      -                  "schemaVersion": {
      -                    "const": 1,
      -                    "type": "number"
      -                  },
      -                  "viewport": {
      -                    "anyOf": [
      -                      {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "height": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "width": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          }
      -                        },
      -                        "required": [
      -                          "width",
      -                          "height"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      {
      -                        "type": "null"
      -                      }
      -                    ]
      -                  }
      -                },
      -                "required": [
      -                  "schemaVersion",
      -                  "browser",
      -                  "remote",
      -                  "viewport",
      -                  "isolated"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "url": {
      -            "maxLength": 2560,
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "id",
      -          "url",
      -          "status",
      -          "target",
      -          "projectCapabilities",
      -          "runtimeCapabilities"
      -        ],
      -        "type": "object"
      -      },
      -      "summary": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "bodyText": {
      -            "maxLength": 1000,
      -            "type": "string"
      -          },
      -          "console": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "errors": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "latestErrors": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "level": {
      -                      "enum": [
      -                        "log",
      -                        "info",
      -                        "debug",
      -                        "warning",
      -                        "error",
      -                        "pageerror"
      -                      ],
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "text": {
      -                      "maxLength": 2000,
      -                      "type": "string"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "level",
      -                    "text"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 3,
      -                "type": "array"
      -              },
      -              "total": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "warnings": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              }
      -            },
      -            "required": [
      -              "total",
      -              "errors",
      -              "warnings",
      -              "latestErrors"
      -            ],
      -            "type": "object"
      -          },
      -          "debugger": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "breakpoints": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "callFrames": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "paused": {
      -                "type": "boolean"
      -              },
      -              "reason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 500,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              }
      -            },
      -            "required": [
      -              "paused",
      -              "reason",
      -              "callFrames",
      -              "breakpoints"
      -            ],
      -            "type": "object"
      -          },
      -          "domElements": {
      -            "maximum": 9007199254740991,
      -            "minimum": 0,
      -            "type": "integer"
      -          },
      -          "network": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "failed": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "latestFailures": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "failure": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "method": {
      -                      "maxLength": 50,
      -                      "type": "string"
      -                    },
      -                    "nextActionId": {
      -                      "maxLength": 200,
      -                      "type": "string"
      -                    },
      -                    "ok": {
      -                      "anyOf": [
      -                        {
      -                          "type": "boolean"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "requestId": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "resourceType": {
      -                      "maxLength": 100,
      -                      "type": "string"
      -                    },
      -                    "status": {
      -                      "anyOf": [
      -                        {
      -                          "maximum": 9007199254740991,
      -                          "minimum": -9007199254740991,
      -                          "type": "integer"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "requestId",
      -                    "method",
      -                    "url",
      -                    "resourceType",
      -                    "status",
      -                    "ok"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 3,
      -                "type": "array"
      -              },
      -              "pending": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "total": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              }
      -            },
      -            "required": [
      -              "total",
      -              "failed",
      -              "pending",
      -              "latestFailures"
      -            ],
      -            "type": "object"
      -          },
      -          "observations": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "console": {
      -                    "$ref": "#/definitions/__schema2"
      -                  },
      -                  "dom": {
      -                    "$ref": "#/definitions/__schema1"
      -                  },
      -                  "url": {
      -                    "$ref": "#/definitions/__schema0"
      -                  }
      -                },
      -                "required": [
      -                  "url",
      -                  "dom",
      -                  "console"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "replay": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "frames": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "newestIndex": {
      -                "anyOf": [
      -                  {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "oldestIndex": {
      -                "anyOf": [
      -                  {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "restorable": {
      -                "type": "boolean"
      -              },
      -              "restoreBlockedReason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "frames",
      -              "truncated",
      -              "oldestIndex",
      -              "newestIndex",
      -              "restorable",
      -              "restoreBlockedReason"
      -            ],
      -            "type": "object"
      -          },
      -          "runtimes": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "accessibility": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "angular": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "next": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "react": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "vite": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "vue": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "react",
      -              "angular",
      -              "vue",
      -              "next",
      -              "vite",
      -              "accessibility"
      -            ],
      -            "type": "object"
      -          },
      -          "title": {
      -            "maxLength": 300,
      -            "type": "string"
      -          },
      -          "viewport": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "height": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  "width": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  }
      -                },
      -                "required": [
      -                  "width",
      -                  "height"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "webmcp": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "callableTools": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "state": {
      -                "enum": [
      -                  "supported",
      -                  "degraded",
      -                  "unsupported"
      -                ],
      -                "type": "string"
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "state",
      -              "callableTools",
      -              "truncated"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "title",
      -          "viewport",
      -          "bodyText",
      -          "domElements",
      -          "console",
      -          "network",
      -          "debugger",
      -          "runtimes",
      -          "replay",
      -          "webmcp",
      -          "observations"
      -        ],
      -        "type": "object"
      -      },
      -      "truncation": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "applied": {
      -            "type": "boolean"
      -          },
      -          "omittedSurfaces": {
      -            "items": {
      -              "enum": [
      -                "dom",
      -                "console",
      -                "network",
      -                "debugger",
      -                "react",
      -                "angular",
      -                "vue",
      -                "next",
      -                "vite",
      -                "accessibility",
      -                "replay",
      -                "screenshot",
      -                "webmcp"
      -              ],
      -              "type": "string"
      -            },
      -            "maxItems": 13,
      -            "type": "array"
      -          }
      -        },
      -        "required": [
      -          "applied",
      -          "omittedSurfaces"
      -        ],
      -        "type": "object"
      -      },
      -      "warnings": {
      -        "items": {
      -          "maxLength": 500,
      -          "type": "string"
      -        },
      -        "maxItems": 10,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "schemaVersion",
      -      "capturedAt",
      -      "cursor",
      -      "session",
      -      "project",
      -      "summary",
      -      "redaction",
      -      "warnings",
      -      "truncation",
      -      "profile"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "capturedAt": {
      -        "maxLength": 100,
      -        "type": "string"
      -      },
      -      "cursor": {
      -        "format": "uuid",
      -        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -        "type": "string"
      -      },
      -      "details": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "accessibility": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema9"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "angular": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema5"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "console": {
      -            "items": {
      -              "additionalProperties": false,
      -              "properties": {
      -                "column": {
      -                  "maximum": 9007199254740991,
      -                  "minimum": -9007199254740991,
      -                  "type": "integer"
      -                },
      -                "level": {
      -                  "enum": [
      -                    "log",
      -                    "info",
      -                    "debug",
      -                    "warning",
      -                    "error",
      -                    "pageerror"
      -                  ],
      -                  "type": "string"
      -                },
      -                "line": {
      -                  "maximum": 9007199254740991,
      -                  "minimum": -9007199254740991,
      -                  "type": "integer"
      -                },
      -                "text": {
      -                  "maxLength": 2000,
      -                  "type": "string"
      -                },
      -                "url": {
      -                  "maxLength": 2560,
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "level",
      -                "text"
      -              ],
      -              "type": "object"
      -            },
      -            "maxItems": 100,
      -            "type": "array"
      -          },
      -          "debugger": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "breakpoints": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "anyOf": [
      -                        {
      -                          "maximum": 9007199254740991,
      -                          "minimum": -9007199254740991,
      -                          "type": "integer"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "id": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "sourceUrl": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "id",
      -                    "sourceUrl",
      -                    "line",
      -                    "column"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 100,
      -                "type": "array"
      -              },
      -              "callFrames": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "functionName": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "locals": {
      -                      "additionalProperties": {
      -                        "$ref": "#/definitions/__schema3"
      -                      },
      -                      "propertyNames": {
      -                        "type": "string"
      -                      },
      -                      "type": "object"
      -                    },
      -                    "scopeNames": {
      -                      "items": {
      -                        "maxLength": 100,
      -                        "type": "string"
      -                      },
      -                      "maxItems": 50,
      -                      "type": "array"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "functionName",
      -                    "url",
      -                    "line",
      -                    "column",
      -                    "scopeNames",
      -                    "locals"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 50,
      -                "type": "array"
      -              },
      -              "paused": {
      -                "type": "boolean"
      -              },
      -              "reason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 500,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              }
      -            },
      -            "required": [
      -              "paused",
      -              "reason",
      -              "callFrames",
      -              "breakpoints"
      -            ],
      -            "type": "object"
      -          },
      -          "dom": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "bodyText": {
      -                "maxLength": 4000,
      -                "type": "string"
      -              },
      -              "elements": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "id": {
      -                      "anyOf": [
      -                        {
      -                          "type": "string"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "role": {
      -                      "anyOf": [
      -                        {
      -                          "type": "string"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "tag": {
      -                      "type": "string"
      -                    },
      -                    "text": {
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "tag",
      -                    "id",
      -                    "role",
      -                    "text"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 50,
      -                "type": "array"
      -              }
      -            },
      -            "required": [
      -              "bodyText",
      -              "elements"
      -            ],
      -            "type": "object"
      -          },
      -          "network": {
      -            "items": {
      -              "additionalProperties": false,
      -              "properties": {
      -                "failure": {
      -                  "maxLength": 500,
      -                  "type": "string"
      -                },
      -                "method": {
      -                  "maxLength": 50,
      -                  "type": "string"
      -                },
      -                "nextActionId": {
      -                  "maxLength": 200,
      -                  "type": "string"
      -                },
      -                "ok": {
      -                  "anyOf": [
      -                    {
      -                      "type": "boolean"
      -                    },
      -                    {
      -                      "type": "null"
      -                    }
      -                  ]
      -                },
      -                "requestId": {
      -                  "maxLength": 500,
      -                  "type": "string"
      -                },
      -                "resourceType": {
      -                  "maxLength": 100,
      -                  "type": "string"
      -                },
      -                "status": {
      -                  "anyOf": [
      -                    {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    {
      -                      "type": "null"
      -                    }
      -                  ]
      -                },
      -                "url": {
      -                  "maxLength": 2560,
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "requestId",
      -                "method",
      -                "url",
      -                "resourceType",
      -                "status",
      -                "ok"
      -              ],
      -              "type": "object"
      -            },
      -            "maxItems": 100,
      -            "type": "array"
      -          },
      -          "next": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema7"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "react": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema4"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "replay": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "enabled": {
      -                "const": true,
      -                "type": "boolean"
      -              },
      -              "frames": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "action": {
      -                      "anyOf": [
      -                        {
      -                          "oneOf": [
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "navigate",
      -                                  "type": "string"
      -                                },
      -                                "url": {
      -                                  "maxLength": 2560,
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "url"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "click",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "fill",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                },
      -                                "value": {
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "value"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "key": {
      -                                  "maxLength": 40,
      -                                  "type": "string"
      -                                },
      -                                "kind": {
      -                                  "const": "press",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "key"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "select",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                },
      -                                "value": {
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "value"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "checked": {
      -                                  "type": "boolean"
      -                                },
      -                                "kind": {
      -                                  "const": "check",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "checked"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "hover",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "scroll",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "expected": {
      -                                  "anyOf": [
      -                                    {
      -                                      "type": "number"
      -                                    },
      -                                    {
      -                                      "type": "boolean"
      -                                    },
      -                                    {
      -                                      "type": "string"
      -                                    },
      -                                    {
      -                                      "type": "null"
      -                                    }
      -                                  ]
      -                                },
      -                                "kind": {
      -                                  "const": "wait",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                },
      -                                "property": {
      -                                  "enum": [
      -                                    "count",
      -                                    "visible",
      -                                    "enabled",
      -                                    "checked",
      -                                    "text"
      -                                  ],
      -                                  "type": "string"
      -                                },
      -                                "timeoutMs": {
      -                                  "maximum": 9007199254740991,
      -                                  "minimum": -9007199254740991,
      -                                  "type": "integer"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "property",
      -                                "expected"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "reload",
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind"
      -                              ],
      -                              "type": "object"
      -                            }
      -                          ]
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "angular": {
      -                      "anyOf": [
      -                        {
      -                          "$ref": "#/definitions/__schema11"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "attemptId": {
      -                      "anyOf": [
      -                        {
      -                          "type": "string"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "capturedAt": {
      -                      "maxLength": 100,
      -                      "type": "string"
      -                    },
      -                    "console": {
      -                      "items": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "column": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "level": {
      -                            "enum": [
      -                              "log",
      -                              "info",
      -                              "debug",
      -                              "warning",
      -                              "error",
      -                              "pageerror"
      -                            ],
      -                            "type": "string"
      -                          },
      -                          "line": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "text": {
      -                            "maxLength": 2000,
      -                            "type": "string"
      -                          },
      -                          "url": {
      -                            "maxLength": 2560,
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "level",
      -                          "text"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "maxItems": 20,
      -                      "type": "array"
      -                    },
      -                    "debugger": {
      -                      "additionalProperties": false,
      -                      "properties": {
      -                        "breakpoints": {
      -                          "items": {
      -                            "additionalProperties": false,
      -                            "properties": {
      -                              "column": {
      -                                "anyOf": [
      -                                  {
      -                                    "maximum": 9007199254740991,
      -                                    "minimum": -9007199254740991,
      -                                    "type": "integer"
      -                                  },
      -                                  {
      -                                    "type": "null"
      -                                  }
      -                                ]
      -                              },
      -                              "id": {
      -                                "maxLength": 500,
      -                                "type": "string"
      -                              },
      -                              "line": {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              "sourceUrl": {
      -                                "maxLength": 2560,
      -                                "type": "string"
      -                              }
      -                            },
      -                            "required": [
      -                              "id",
      -                              "sourceUrl",
      -                              "line",
      -                              "column"
      -                            ],
      -                            "type": "object"
      -                          },
      -                          "maxItems": 100,
      -                          "type": "array"
      -                        },
      -                        "callFrames": {
      -                          "items": {
      -                            "additionalProperties": false,
      -                            "properties": {
      -                              "column": {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              "functionName": {
      -                                "maxLength": 500,
      -                                "type": "string"
      -                              },
      -                              "line": {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              "locals": {
      -                                "additionalProperties": {
      -                                  "$ref": "#/definitions/__schema3"
      -                                },
      -                                "propertyNames": {
      -                                  "type": "string"
      -                                },
      -                                "type": "object"
      -                              },
      -                              "scopeNames": {
      -                                "items": {
      -                                  "maxLength": 100,
      -                                  "type": "string"
      -                                },
      -                                "maxItems": 50,
      -                                "type": "array"
      -                              },
      -                              "url": {
      -                                "maxLength": 2560,
      -                                "type": "string"
      -                              }
      -                            },
      -                            "required": [
      -                              "functionName",
      -                              "url",
      -                              "line",
      -                              "column",
      -                              "scopeNames",
      -                              "locals"
      -                            ],
      -                            "type": "object"
      -                          },
      -                          "maxItems": 50,
      -                          "type": "array"
      -                        },
      -                        "paused": {
      -                          "type": "boolean"
      -                        },
      -                        "reason": {
      -                          "anyOf": [
      -                            {
      -                              "maxLength": 500,
      -                              "type": "string"
      -                            },
      -                            {
      -                              "type": "null"
      -                            }
      -                          ]
      -                        }
      -                      },
      -                      "required": [
      -                        "paused",
      -                        "reason",
      -                        "callFrames",
      -                        "breakpoints"
      -                      ],
      -                      "type": "object"
      -                    },
      -                    "dom": {
      -                      "additionalProperties": false,
      -                      "properties": {
      -                        "bodyText": {
      -                          "maxLength": 4000,
      -                          "type": "string"
      -                        },
      -                        "elements": {
      -                          "items": {
      -                            "additionalProperties": false,
      -                            "properties": {
      -                              "id": {
      -                                "anyOf": [
      -                                  {
      -                                    "type": "string"
      -                                  },
      -                                  {
      -                                    "type": "null"
      -                                  }
      -                                ]
      -                              },
      -                              "role": {
      -                                "anyOf": [
      -                                  {
      -                                    "type": "string"
      -                                  },
      -                                  {
      -                                    "type": "null"
      -                                  }
      -                                ]
      -                              },
      -                              "tag": {
      -                                "type": "string"
      -                              },
      -                              "text": {
      -                                "type": "string"
      -                              }
      -                            },
      -                            "required": [
      -                              "tag",
      -                              "id",
      -                              "role",
      -                              "text"
      -                            ],
      -                            "type": "object"
      -                          },
      -                          "maxItems": 50,
      -                          "type": "array"
      -                        }
      -                      },
      -                      "required": [
      -                        "bodyText",
      -                        "elements"
      -                      ],
      -                      "type": "object"
      -                    },
      -                    "index": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": 0,
      -                      "type": "integer"
      -                    },
      -                    "network": {
      -                      "items": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "failure": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "method": {
      -                            "maxLength": 50,
      -                            "type": "string"
      -                          },
      -                          "nextActionId": {
      -                            "maxLength": 200,
      -                            "type": "string"
      -                          },
      -                          "ok": {
      -                            "anyOf": [
      -                              {
      -                                "type": "boolean"
      -                              },
      -                              {
      -                                "type": "null"
      -                              }
      -                            ]
      -                          },
      -                          "requestId": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "resourceType": {
      -                            "maxLength": 100,
      -                            "type": "string"
      -                          },
      -                          "status": {
      -                            "anyOf": [
      -                              {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              {
      -                                "type": "null"
      -                              }
      -                            ]
      -                          },
      -                          "url": {
      -                            "maxLength": 2560,
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "requestId",
      -                          "method",
      -                          "url",
      -                          "resourceType",
      -                          "status",
      -                          "ok"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "maxItems": 20,
      -                      "type": "array"
      -                    },
      -                    "react": {
      -                      "anyOf": [
      -                        {
      -                          "$ref": "#/definitions/__schema10"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "title": {
      -                      "maxLength": 300,
      -                      "type": "string"
      -                    },
      -                    "trigger": {
      -                      "enum": [
      -                        "action",
      -                        "capture"
      -                      ],
      -                      "type": "string"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    },
      -                    "vue": {
      -                      "anyOf": [
      -                        {
      -                          "$ref": "#/definitions/__schema12"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    }
      -                  },
      -                  "required": [
      -                    "index",
      -                    "attemptId",
      -                    "capturedAt",
      -                    "trigger",
      -                    "action",
      -                    "url",
      -                    "title",
      -                    "dom",
      -                    "console",
      -                    "network",
      -                    "debugger",
      -                    "react",
      -                    "angular",
      -                    "vue"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 8,
      -                "type": "array"
      -              },
      -              "maxFrames": {
      -                "exclusiveMinimum": 0,
      -                "maximum": 9007199254740991,
      -                "type": "integer"
      -              },
      -              "restorable": {
      -                "type": "boolean"
      -              },
      -              "restoreBlockedReason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "enabled",
      -              "maxFrames",
      -              "truncated",
      -              "restorable",
      -              "restoreBlockedReason",
      -              "frames"
      -            ],
      -            "type": "object"
      -          },
      -          "screenshot": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "status": {
      -                "enum": [
      -                  "captured",
      -                  "suppressed",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "status"
      -            ],
      -            "type": "object"
      -          },
      -          "vite": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema8"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "vue": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema6"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "webmcp": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "observedAt": {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  "provenance": {
      -                    "const": "webmcp-page-api",
      -                    "type": "string"
      -                  },
      -                  "tools": {
      -                    "items": {
      -                      "additionalProperties": false,
      -                      "properties": {
      -                        "annotations": {
      -                          "additionalProperties": false,
      -                          "properties": {
      -                            "readOnlyHint": {
      -                              "anyOf": [
      -                                {
      -                                  "type": "boolean"
      -                                },
      -                                {
      -                                  "type": "null"
      -                                }
      -                              ]
      -                            },
      -                            "untrustedContentHint": {
      -                              "anyOf": [
      -                                {
      -                                  "type": "boolean"
      -                                },
      -                                {
      -                                  "type": "null"
      -                                }
      -                              ]
      -                            }
      -                          },
      -                          "required": [
      -                            "readOnlyHint",
      -                            "untrustedContentHint"
      -                          ],
      -                          "type": "object"
      -                        },
      -                        "description": {
      -                          "maxLength": 500,
      -                          "type": "string"
      -                        },
      -                        "inputSchemaJson": {
      -                          "anyOf": [
      -                            {
      -                              "maxLength": 8192,
      -                              "type": "string"
      -                            },
      -                            {
      -                              "type": "null"
      -                            }
      -                          ]
      -                        },
      -                        "name": {
      -                          "maxLength": 100,
      -                          "type": "string"
      -                        },
      -                        "origin": {
      -                          "maxLength": 2048,
      -                          "type": "string"
      -                        },
      -                        "title": {
      -                          "anyOf": [
      -                            {
      -                              "maxLength": 200,
      -                              "type": "string"
      -                            },
      -                            {
      -                              "type": "null"
      -                            }
      -                          ]
      -                        },
      -                        "untrusted": {
      -                          "const": true,
      -                          "type": "boolean"
      -                        }
      -                      },
      -                      "required": [
      -                        "origin",
      -                        "name",
      -                        "title",
      -                        "description",
      -                        "inputSchemaJson",
      -                        "annotations",
      -                        "untrusted"
      -                      ],
      -                      "type": "object"
      -                    },
      -                    "maxItems": 16,
      -                    "type": "array"
      -                  },
      -                  "total": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": 0,
      -                    "type": "integer"
      -                  },
      -                  "truncated": {
      -                    "type": "boolean"
      -                  }
      -                },
      -                "required": [
      -                  "provenance",
      -                  "observedAt",
      -                  "total",
      -                  "truncated",
      -                  "tools"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "profile": {
      -        "const": "full",
      -        "type": "string"
      -      },
      -      "project": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "ambiguous": {
      -            "type": "boolean"
      -          },
      -          "confidence": {
      -            "enum": [
      -              "high",
      -              "medium",
      -              "low",
      -              "none"
      -            ],
      -            "type": "string"
      -          },
      -          "frameworks": {
      -            "items": {
      -              "enum": [
      -                "vanilla",
      -                "react",
      -                "angular",
      -                "vue",
      -                "vite",
      -                "next"
      -              ],
      -              "type": "string"
      -            },
      -            "maxItems": 6,
      -            "type": "array"
      -          },
      -          "projectCapabilities": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "angular": {
      -                "type": "boolean"
      -              },
      -              "browserTarget": {
      -                "type": "boolean"
      -              },
      -              "next": {
      -                "type": "boolean"
      -              },
      -              "react": {
      -                "type": "boolean"
      -              },
      -              "serverRuntime": {
      -                "type": "boolean"
      -              },
      -              "vite": {
      -                "type": "boolean"
      -              },
      -              "vue": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "browserTarget",
      -              "react",
      -              "angular",
      -              "vue",
      -              "vite",
      -              "next",
      -              "serverRuntime"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "frameworks",
      -          "confidence",
      -          "ambiguous",
      -          "projectCapabilities"
      -        ],
      -        "type": "object"
      -      },
      -      "redaction": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "applied": {
      -            "const": true,
      -            "type": "boolean"
      -          },
      -          "policy": {
      -            "const": "default-sensitive-fields",
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "applied",
      -          "policy"
      -        ],
      -        "type": "object"
      -      },
      -      "schemaVersion": {
      -        "const": 5,
      -        "type": "number"
      -      },
      -      "session": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "id": {
      -            "format": "uuid",
      -            "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -            "type": "string"
      -          },
      -          "projectCapabilities": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "angular": {
      -                "type": "boolean"
      -              },
      -              "browserTarget": {
      -                "type": "boolean"
      -              },
      -              "next": {
      -                "type": "boolean"
      -              },
      -              "react": {
      -                "type": "boolean"
      -              },
      -              "serverRuntime": {
      -                "type": "boolean"
      -              },
      -              "vite": {
      -                "type": "boolean"
      -              },
      -              "vue": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "browserTarget",
      -              "react",
      -              "angular",
      -              "vue",
      -              "vite",
      -              "next",
      -              "serverRuntime"
      -            ],
      -            "type": "object"
      -          },
      -          "runtimeCapabilities": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "accessibility": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "actions": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "authSeeding": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "browser": {
      -                    "enum": [
      -                      "chromium",
      -                      "safari"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "console": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "dom": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "evaluation": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "javascriptDebugger": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "locators": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "css": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "provenance": {
      -                            "items": {
      -                              "enum": [
      -                                "playwright",
      -                                "chromium-cdp",
      -                                "safari-webdriver",
      -                                "safari-bidi",
      -                                "performance-resource-timing",
      -                                "session-policy",
      -                                "webmcp-page-api"
      -                              ],
      -                              "type": "string"
      -                            },
      -                            "maxItems": 2,
      -                            "type": "array"
      -                          },
      -                          "reason": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "state": {
      -                            "enum": [
      -                              "supported",
      -                              "degraded",
      -                              "unsupported"
      -                            ],
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "state",
      -                          "provenance"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "semantic": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "provenance": {
      -                            "items": {
      -                              "enum": [
      -                                "playwright",
      -                                "chromium-cdp",
      -                                "safari-webdriver",
      -                                "safari-bidi",
      -                                "performance-resource-timing",
      -                                "session-policy",
      -                                "webmcp-page-api"
      -                              ],
      -                              "type": "string"
      -                            },
      -                            "maxItems": 2,
      -                            "type": "array"
      -                          },
      -                          "reason": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "state": {
      -                            "enum": [
      -                              "supported",
      -                              "degraded",
      -                              "unsupported"
      -                            ],
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "state",
      -                          "provenance"
      -                        ],
      -                        "type": "object"
      -                      }
      -                    },
      -                    "required": [
      -                      "css",
      -                      "semantic"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "network": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "pageRuntimeEnrichment": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "schemaVersion": {
      -                    "const": 2,
      -                    "type": "number"
      -                  },
      -                  "screenshots": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "tlsBypass": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "transport": {
      -                    "enum": [
      -                      "chromium-launch",
      -                      "chromium-cdp-attach",
      -                      "safari-webdriver"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "viewportMatrix": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "webmcp": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  }
      -                },
      -                "required": [
      -                  "schemaVersion",
      -                  "browser",
      -                  "transport",
      -                  "actions",
      -                  "locators",
      -                  "dom",
      -                  "console",
      -                  "network",
      -                  "screenshots",
      -                  "javascriptDebugger",
      -                  "evaluation",
      -                  "accessibility",
      -                  "pageRuntimeEnrichment",
      -                  "viewportMatrix",
      -                  "tlsBypass",
      -                  "authSeeding",
      -                  "webmcp"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "status": {
      -            "enum": [
      -              "starting",
      -              "ready",
      -              "paused",
      -              "failed",
      -              "closed"
      -            ],
      -            "type": "string"
      -          },
      -          "target": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "browser": {
      -                    "enum": [
      -                      "chromium",
      -                      "safari"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "isolated": {
      -                    "type": "boolean"
      -                  },
      -                  "mode": {
      -                    "enum": [
      -                      "launch",
      -                      "attach",
      -                      "webdriver"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "remote": {
      -                    "type": "boolean"
      -                  },
      -                  "schemaVersion": {
      -                    "const": 1,
      -                    "type": "number"
      -                  },
      -                  "viewport": {
      -                    "anyOf": [
      -                      {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "height": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "width": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          }
      -                        },
      -                        "required": [
      -                          "width",
      -                          "height"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      {
      -                        "type": "null"
      -                      }
      -                    ]
      -                  }
      -                },
      -                "required": [
      -                  "schemaVersion",
      -                  "browser",
      -                  "remote",
      -                  "viewport",
      -                  "isolated"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "url": {
      -            "maxLength": 2560,
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "id",
      -          "url",
      -          "status",
      -          "target",
      -          "projectCapabilities",
      -          "runtimeCapabilities"
      -        ],
      -        "type": "object"
      -      },
      -      "summary": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "bodyText": {
      -            "maxLength": 1000,
      -            "type": "string"
      -          },
      -          "console": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "errors": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "latestErrors": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "level": {
      -                      "enum": [
      -                        "log",
      -                        "info",
      -                        "debug",
      -                        "warning",
      -                        "error",
      -                        "pageerror"
      -                      ],
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "text": {
      -                      "maxLength": 2000,
      -                      "type": "string"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "level",
      -                    "text"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 3,
      -                "type": "array"
      -              },
      -              "total": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "warnings": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              }
      -            },
      -            "required": [
      -              "total",
      -              "errors",
      -              "warnings",
      -              "latestErrors"
      -            ],
      -            "type": "object"
      -          },
      -          "debugger": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "breakpoints": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "callFrames": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "paused": {
      -                "type": "boolean"
      -              },
      -              "reason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 500,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              }
      -            },
      -            "required": [
      -              "paused",
      -              "reason",
      -              "callFrames",
      -              "breakpoints"
      -            ],
      -            "type": "object"
      -          },
      -          "domElements": {
      -            "maximum": 9007199254740991,
      -            "minimum": 0,
      -            "type": "integer"
      -          },
      -          "network": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "failed": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "latestFailures": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "failure": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "method": {
      -                      "maxLength": 50,
      -                      "type": "string"
      -                    },
      -                    "nextActionId": {
      -                      "maxLength": 200,
      -                      "type": "string"
      -                    },
      -                    "ok": {
      -                      "anyOf": [
      -                        {
      -                          "type": "boolean"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "requestId": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "resourceType": {
      -                      "maxLength": 100,
      -                      "type": "string"
      -                    },
      -                    "status": {
      -                      "anyOf": [
      -                        {
      -                          "maximum": 9007199254740991,
      -                          "minimum": -9007199254740991,
      -                          "type": "integer"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "requestId",
      -                    "method",
      -                    "url",
      -                    "resourceType",
      -                    "status",
      -                    "ok"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 3,
      -                "type": "array"
      -              },
      -              "pending": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "total": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              }
      -            },
      -            "required": [
      -              "total",
      -              "failed",
      -              "pending",
      -              "latestFailures"
      -            ],
      -            "type": "object"
      -          },
      -          "observations": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "console": {
      -                    "$ref": "#/definitions/__schema2"
      -                  },
      -                  "dom": {
      -                    "$ref": "#/definitions/__schema1"
      -                  },
      -                  "url": {
      -                    "$ref": "#/definitions/__schema0"
      -                  }
      -                },
      -                "required": [
      -                  "url",
      -                  "dom",
      -                  "console"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "replay": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "frames": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "newestIndex": {
      -                "anyOf": [
      -                  {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "oldestIndex": {
      -                "anyOf": [
      -                  {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "restorable": {
      -                "type": "boolean"
      -              },
      -              "restoreBlockedReason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "frames",
      -              "truncated",
      -              "oldestIndex",
      -              "newestIndex",
      -              "restorable",
      -              "restoreBlockedReason"
      -            ],
      -            "type": "object"
      -          },
      -          "runtimes": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "accessibility": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "angular": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "next": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "react": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "vite": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "vue": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "react",
      -              "angular",
      -              "vue",
      -              "next",
      -              "vite",
      -              "accessibility"
      -            ],
      -            "type": "object"
      -          },
      -          "title": {
      -            "maxLength": 300,
      -            "type": "string"
      -          },
      -          "viewport": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "height": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  "width": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  }
      -                },
      -                "required": [
      -                  "width",
      -                  "height"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "webmcp": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "callableTools": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "state": {
      -                "enum": [
      -                  "supported",
      -                  "degraded",
      -                  "unsupported"
      -                ],
      -                "type": "string"
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "state",
      -              "callableTools",
      -              "truncated"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "title",
      -          "viewport",
      -          "bodyText",
      -          "domElements",
      -          "console",
      -          "network",
      -          "debugger",
      -          "runtimes",
      -          "replay",
      -          "webmcp",
      -          "observations"
      -        ],
      -        "type": "object"
      -      },
      -      "truncation": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "applied": {
      -            "type": "boolean"
      -          },
      -          "omittedSurfaces": {
      -            "items": {
      -              "enum": [
      -                "dom",
      -                "console",
      -                "network",
      -                "debugger",
      -                "react",
      -                "angular",
      -                "vue",
      -                "next",
      -                "vite",
      -                "accessibility",
      -                "replay",
      -                "screenshot",
      -                "webmcp"
      -              ],
      -              "type": "string"
      -            },
      -            "maxItems": 13,
      -            "type": "array"
      -          }
      -        },
      -        "required": [
      -          "applied",
      -          "omittedSurfaces"
      -        ],
      -        "type": "object"
      -      },
      -      "warnings": {
      -        "items": {
      -          "maxLength": 500,
      -          "type": "string"
      -        },
      -        "maxItems": 10,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "schemaVersion",
      -      "capturedAt",
      -      "cursor",
      -      "session",
      -      "project",
      -      "summary",
      -      "redaction",
      -      "warnings",
      -      "truncation",
      -      "profile",
      -      "details"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "capturedAt": {
      -        "maxLength": 100,
      -        "type": "string"
      -      },
      -      "cursor": {
      -        "format": "uuid",
      -        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -        "type": "string"
      -      },
      -      "details": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "accessibility": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema9"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "angular": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema5"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "console": {
      -            "items": {
      -              "additionalProperties": false,
      -              "properties": {
      -                "column": {
      -                  "maximum": 9007199254740991,
      -                  "minimum": -9007199254740991,
      -                  "type": "integer"
      -                },
      -                "level": {
      -                  "enum": [
      -                    "log",
      -                    "info",
      -                    "debug",
      -                    "warning",
      -                    "error",
      -                    "pageerror"
      -                  ],
      -                  "type": "string"
      -                },
      -                "line": {
      -                  "maximum": 9007199254740991,
      -                  "minimum": -9007199254740991,
      -                  "type": "integer"
      -                },
      -                "text": {
      -                  "maxLength": 2000,
      -                  "type": "string"
      -                },
      -                "url": {
      -                  "maxLength": 2560,
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "level",
      -                "text"
      -              ],
      -              "type": "object"
      -            },
      -            "maxItems": 100,
      -            "type": "array"
      -          },
      -          "debugger": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "breakpoints": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "anyOf": [
      -                        {
      -                          "maximum": 9007199254740991,
      -                          "minimum": -9007199254740991,
      -                          "type": "integer"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "id": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "sourceUrl": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "id",
      -                    "sourceUrl",
      -                    "line",
      -                    "column"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 100,
      -                "type": "array"
      -              },
      -              "callFrames": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "functionName": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "locals": {
      -                      "additionalProperties": {
      -                        "$ref": "#/definitions/__schema3"
      -                      },
      -                      "propertyNames": {
      -                        "type": "string"
      -                      },
      -                      "type": "object"
      -                    },
      -                    "scopeNames": {
      -                      "items": {
      -                        "maxLength": 100,
      -                        "type": "string"
      -                      },
      -                      "maxItems": 50,
      -                      "type": "array"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "functionName",
      -                    "url",
      -                    "line",
      -                    "column",
      -                    "scopeNames",
      -                    "locals"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 50,
      -                "type": "array"
      -              },
      -              "paused": {
      -                "type": "boolean"
      -              },
      -              "reason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 500,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              }
      -            },
      -            "required": [
      -              "paused",
      -              "reason",
      -              "callFrames",
      -              "breakpoints"
      -            ],
      -            "type": "object"
      -          },
      -          "dom": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "bodyText": {
      -                "maxLength": 4000,
      -                "type": "string"
      -              },
      -              "elements": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "id": {
      -                      "anyOf": [
      -                        {
      -                          "type": "string"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "role": {
      -                      "anyOf": [
      -                        {
      -                          "type": "string"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "tag": {
      -                      "type": "string"
      -                    },
      -                    "text": {
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "tag",
      -                    "id",
      -                    "role",
      -                    "text"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 50,
      -                "type": "array"
      -              }
      -            },
      -            "required": [
      -              "bodyText",
      -              "elements"
      -            ],
      -            "type": "object"
      -          },
      -          "network": {
      -            "items": {
      -              "additionalProperties": false,
      -              "properties": {
      -                "failure": {
      -                  "maxLength": 500,
      -                  "type": "string"
      -                },
      -                "method": {
      -                  "maxLength": 50,
      -                  "type": "string"
      -                },
      -                "nextActionId": {
      -                  "maxLength": 200,
      -                  "type": "string"
      -                },
      -                "ok": {
      -                  "anyOf": [
      -                    {
      -                      "type": "boolean"
      -                    },
      -                    {
      -                      "type": "null"
      -                    }
      -                  ]
      -                },
      -                "requestId": {
      -                  "maxLength": 500,
      -                  "type": "string"
      -                },
      -                "resourceType": {
      -                  "maxLength": 100,
      -                  "type": "string"
      -                },
      -                "status": {
      -                  "anyOf": [
      -                    {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    {
      -                      "type": "null"
      -                    }
      -                  ]
      -                },
      -                "url": {
      -                  "maxLength": 2560,
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "requestId",
      -                "method",
      -                "url",
      -                "resourceType",
      -                "status",
      -                "ok"
      -              ],
      -              "type": "object"
      -            },
      -            "maxItems": 100,
      -            "type": "array"
      -          },
      -          "next": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema7"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "react": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema4"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "replay": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "enabled": {
      -                "const": true,
      -                "type": "boolean"
      -              },
      -              "frames": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "action": {
      -                      "anyOf": [
      -                        {
      -                          "oneOf": [
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "navigate",
      -                                  "type": "string"
      -                                },
      -                                "url": {
      -                                  "maxLength": 2560,
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "url"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "click",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "fill",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                },
      -                                "value": {
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "value"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "key": {
      -                                  "maxLength": 40,
      -                                  "type": "string"
      -                                },
      -                                "kind": {
      -                                  "const": "press",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "key"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "select",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                },
      -                                "value": {
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "value"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "checked": {
      -                                  "type": "boolean"
      -                                },
      -                                "kind": {
      -                                  "const": "check",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "checked"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "hover",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "scroll",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "expected": {
      -                                  "anyOf": [
      -                                    {
      -                                      "type": "number"
      -                                    },
      -                                    {
      -                                      "type": "boolean"
      -                                    },
      -                                    {
      -                                      "type": "string"
      -                                    },
      -                                    {
      -                                      "type": "null"
      -                                    }
      -                                  ]
      -                                },
      -                                "kind": {
      -                                  "const": "wait",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                },
      -                                "property": {
      -                                  "enum": [
      -                                    "count",
      -                                    "visible",
      -                                    "enabled",
      -                                    "checked",
      -                                    "text"
      -                                  ],
      -                                  "type": "string"
      -                                },
      -                                "timeoutMs": {
      -                                  "maximum": 9007199254740991,
      -                                  "minimum": -9007199254740991,
      -                                  "type": "integer"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "property",
      -                                "expected"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "reload",
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind"
      -                              ],
      -                              "type": "object"
      -                            }
      -                          ]
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "angular": {
      -                      "anyOf": [
      -                        {
      -                          "$ref": "#/definitions/__schema11"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "attemptId": {
      -                      "anyOf": [
      -                        {
      -                          "type": "string"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "capturedAt": {
      -                      "maxLength": 100,
      -                      "type": "string"
      -                    },
      -                    "console": {
      -                      "items": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "column": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "level": {
      -                            "enum": [
      -                              "log",
      -                              "info",
      -                              "debug",
      -                              "warning",
      -                              "error",
      -                              "pageerror"
      -                            ],
      -                            "type": "string"
      -                          },
      -                          "line": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "text": {
      -                            "maxLength": 2000,
      -                            "type": "string"
      -                          },
      -                          "url": {
      -                            "maxLength": 2560,
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "level",
      -                          "text"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "maxItems": 20,
      -                      "type": "array"
      -                    },
      -                    "debugger": {
      -                      "additionalProperties": false,
      -                      "properties": {
      -                        "breakpoints": {
      -                          "items": {
      -                            "additionalProperties": false,
      -                            "properties": {
      -                              "column": {
      -                                "anyOf": [
      -                                  {
      -                                    "maximum": 9007199254740991,
      -                                    "minimum": -9007199254740991,
      -                                    "type": "integer"
      -                                  },
      -                                  {
      -                                    "type": "null"
      -                                  }
      -                                ]
      -                              },
      -                              "id": {
      -                                "maxLength": 500,
      -                                "type": "string"
      -                              },
      -                              "line": {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              "sourceUrl": {
      -                                "maxLength": 2560,
      -                                "type": "string"
      -                              }
      -                            },
      -                            "required": [
      -                              "id",
      -                              "sourceUrl",
      -                              "line",
      -                              "column"
      -                            ],
      -                            "type": "object"
      -                          },
      -                          "maxItems": 100,
      -                          "type": "array"
      -                        },
      -                        "callFrames": {
      -                          "items": {
      -                            "additionalProperties": false,
      -                            "properties": {
      -                              "column": {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              "functionName": {
      -                                "maxLength": 500,
      -                                "type": "string"
      -                              },
      -                              "line": {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              "locals": {
      -                                "additionalProperties": {
      -                                  "$ref": "#/definitions/__schema3"
      -                                },
      -                                "propertyNames": {
      -                                  "type": "string"
      -                                },
      -                                "type": "object"
      -                              },
      -                              "scopeNames": {
      -                                "items": {
      -                                  "maxLength": 100,
      -                                  "type": "string"
      -                                },
      -                                "maxItems": 50,
      -                                "type": "array"
      -                              },
      -                              "url": {
      -                                "maxLength": 2560,
      -                                "type": "string"
      -                              }
      -                            },
      -                            "required": [
      -                              "functionName",
      -                              "url",
      -                              "line",
      -                              "column",
      -                              "scopeNames",
      -                              "locals"
      -                            ],
      -                            "type": "object"
      -                          },
      -                          "maxItems": 50,
      -                          "type": "array"
      -                        },
      -                        "paused": {
      -                          "type": "boolean"
      -                        },
      -                        "reason": {
      -                          "anyOf": [
      -                            {
      -                              "maxLength": 500,
      -                              "type": "string"
      -                            },
      -                            {
      -                              "type": "null"
      -                            }
      -                          ]
      -                        }
      -                      },
      -                      "required": [
      -                        "paused",
      -                        "reason",
      -                        "callFrames",
      -                        "breakpoints"
      -                      ],
      -                      "type": "object"
      -                    },
      -                    "dom": {
      -                      "additionalProperties": false,
      -                      "properties": {
      -                        "bodyText": {
      -                          "maxLength": 4000,
      -                          "type": "string"
      -                        },
      -                        "elements": {
      -                          "items": {
      -                            "additionalProperties": false,
      -                            "properties": {
      -                              "id": {
      -                                "anyOf": [
      -                                  {
      -                                    "type": "string"
      -                                  },
      -                                  {
      -                                    "type": "null"
      -                                  }
      -                                ]
      -                              },
      -                              "role": {
      -                                "anyOf": [
      -                                  {
      -                                    "type": "string"
      -                                  },
      -                                  {
      -                                    "type": "null"
      -                                  }
      -                                ]
      -                              },
      -                              "tag": {
      -                                "type": "string"
      -                              },
      -                              "text": {
      -                                "type": "string"
      -                              }
      -                            },
      -                            "required": [
      -                              "tag",
      -                              "id",
      -                              "role",
      -                              "text"
      -                            ],
      -                            "type": "object"
      -                          },
      -                          "maxItems": 50,
      -                          "type": "array"
      -                        }
      -                      },
      -                      "required": [
      -                        "bodyText",
      -                        "elements"
      -                      ],
      -                      "type": "object"
      -                    },
      -                    "index": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": 0,
      -                      "type": "integer"
      -                    },
      -                    "network": {
      -                      "items": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "failure": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "method": {
      -                            "maxLength": 50,
      -                            "type": "string"
      -                          },
      -                          "nextActionId": {
      -                            "maxLength": 200,
      -                            "type": "string"
      -                          },
      -                          "ok": {
      -                            "anyOf": [
      -                              {
      -                                "type": "boolean"
      -                              },
      -                              {
      -                                "type": "null"
      -                              }
      -                            ]
      -                          },
      -                          "requestId": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "resourceType": {
      -                            "maxLength": 100,
      -                            "type": "string"
      -                          },
      -                          "status": {
      -                            "anyOf": [
      -                              {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              {
      -                                "type": "null"
      -                              }
      -                            ]
      -                          },
      -                          "url": {
      -                            "maxLength": 2560,
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "requestId",
      -                          "method",
      -                          "url",
      -                          "resourceType",
      -                          "status",
      -                          "ok"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "maxItems": 20,
      -                      "type": "array"
      -                    },
      -                    "react": {
      -                      "anyOf": [
      -                        {
      -                          "$ref": "#/definitions/__schema10"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "title": {
      -                      "maxLength": 300,
      -                      "type": "string"
      -                    },
      -                    "trigger": {
      -                      "enum": [
      -                        "action",
      -                        "capture"
      -                      ],
      -                      "type": "string"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    },
      -                    "vue": {
      -                      "anyOf": [
      -                        {
      -                          "$ref": "#/definitions/__schema12"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    }
      -                  },
      -                  "required": [
      -                    "index",
      -                    "attemptId",
      -                    "capturedAt",
      -                    "trigger",
      -                    "action",
      -                    "url",
      -                    "title",
      -                    "dom",
      -                    "console",
      -                    "network",
      -                    "debugger",
      -                    "react",
      -                    "angular",
      -                    "vue"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 8,
      -                "type": "array"
      -              },
      -              "maxFrames": {
      -                "exclusiveMinimum": 0,
      -                "maximum": 9007199254740991,
      -                "type": "integer"
      -              },
      -              "restorable": {
      -                "type": "boolean"
      -              },
      -              "restoreBlockedReason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "enabled",
      -              "maxFrames",
      -              "truncated",
      -              "restorable",
      -              "restoreBlockedReason",
      -              "frames"
      -            ],
      -            "type": "object"
      -          },
      -          "screenshot": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "status": {
      -                "enum": [
      -                  "captured",
      -                  "suppressed",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "status"
      -            ],
      -            "type": "object"
      -          },
      -          "vite": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema8"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "vue": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema6"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "webmcp": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "observedAt": {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  "provenance": {
      -                    "const": "webmcp-page-api",
      -                    "type": "string"
      -                  },
      -                  "tools": {
      -                    "items": {
      -                      "additionalProperties": false,
      -                      "properties": {
      -                        "annotations": {
      -                          "additionalProperties": false,
      -                          "properties": {
      -                            "readOnlyHint": {
      -                              "anyOf": [
      -                                {
      -                                  "type": "boolean"
      -                                },
      -                                {
      -                                  "type": "null"
      -                                }
      -                              ]
      -                            },
      -                            "untrustedContentHint": {
      -                              "anyOf": [
      -                                {
      -                                  "type": "boolean"
      -                                },
      -                                {
      -                                  "type": "null"
      -                                }
      -                              ]
      -                            }
      -                          },
      -                          "required": [
      -                            "readOnlyHint",
      -                            "untrustedContentHint"
      -                          ],
      -                          "type": "object"
      -                        },
      -                        "description": {
      -                          "maxLength": 500,
      -                          "type": "string"
      -                        },
      -                        "inputSchemaJson": {
      -                          "anyOf": [
      -                            {
      -                              "maxLength": 8192,
      -                              "type": "string"
      -                            },
      -                            {
      -                              "type": "null"
      -                            }
      -                          ]
      -                        },
      -                        "name": {
      -                          "maxLength": 100,
      -                          "type": "string"
      -                        },
      -                        "origin": {
      -                          "maxLength": 2048,
      -                          "type": "string"
      -                        },
      -                        "title": {
      -                          "anyOf": [
      -                            {
      -                              "maxLength": 200,
      -                              "type": "string"
      -                            },
      -                            {
      -                              "type": "null"
      -                            }
      -                          ]
      -                        },
      -                        "untrusted": {
      -                          "const": true,
      -                          "type": "boolean"
      -                        }
      -                      },
      -                      "required": [
      -                        "origin",
      -                        "name",
      -                        "title",
      -                        "description",
      -                        "inputSchemaJson",
      -                        "annotations",
      -                        "untrusted"
      -                      ],
      -                      "type": "object"
      -                    },
      -                    "maxItems": 16,
      -                    "type": "array"
      -                  },
      -                  "total": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": 0,
      -                    "type": "integer"
      -                  },
      -                  "truncated": {
      -                    "type": "boolean"
      -                  }
      -                },
      -                "required": [
      -                  "provenance",
      -                  "observedAt",
      -                  "total",
      -                  "truncated",
      -                  "tools"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "includedSurfaces": {
      -        "items": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "maxItems": 13,
      -        "minItems": 1,
      -        "type": "array"
      -      },
      -      "profile": {
      -        "const": "include",
      -        "type": "string"
      -      },
      -      "project": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "ambiguous": {
      -            "type": "boolean"
      -          },
      -          "confidence": {
      -            "enum": [
      -              "high",
      -              "medium",
      -              "low",
      -              "none"
      -            ],
      -            "type": "string"
      -          },
      -          "frameworks": {
      -            "items": {
      -              "enum": [
      -                "vanilla",
      -                "react",
      -                "angular",
      -                "vue",
      -                "vite",
      -                "next"
      -              ],
      -              "type": "string"
      -            },
      -            "maxItems": 6,
      -            "type": "array"
      -          },
      -          "projectCapabilities": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "angular": {
      -                "type": "boolean"
      -              },
      -              "browserTarget": {
      -                "type": "boolean"
      -              },
      -              "next": {
      -                "type": "boolean"
      -              },
      -              "react": {
      -                "type": "boolean"
      -              },
      -              "serverRuntime": {
      -                "type": "boolean"
      -              },
      -              "vite": {
      -                "type": "boolean"
      -              },
      -              "vue": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "browserTarget",
      -              "react",
      -              "angular",
      -              "vue",
      -              "vite",
      -              "next",
      -              "serverRuntime"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "frameworks",
      -          "confidence",
      -          "ambiguous",
      -          "projectCapabilities"
      -        ],
      -        "type": "object"
      -      },
      -      "redaction": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "applied": {
      -            "const": true,
      -            "type": "boolean"
      -          },
      -          "policy": {
      -            "const": "default-sensitive-fields",
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "applied",
      -          "policy"
      -        ],
      -        "type": "object"
      -      },
      -      "schemaVersion": {
      -        "const": 5,
      -        "type": "number"
      -      },
      -      "session": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "id": {
      -            "format": "uuid",
      -            "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -            "type": "string"
      -          },
      -          "projectCapabilities": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "angular": {
      -                "type": "boolean"
      -              },
      -              "browserTarget": {
      -                "type": "boolean"
      -              },
      -              "next": {
      -                "type": "boolean"
      -              },
      -              "react": {
      -                "type": "boolean"
      -              },
      -              "serverRuntime": {
      -                "type": "boolean"
      -              },
      -              "vite": {
      -                "type": "boolean"
      -              },
      -              "vue": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "browserTarget",
      -              "react",
      -              "angular",
      -              "vue",
      -              "vite",
      -              "next",
      -              "serverRuntime"
      -            ],
      -            "type": "object"
      -          },
      -          "runtimeCapabilities": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "accessibility": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "actions": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "authSeeding": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "browser": {
      -                    "enum": [
      -                      "chromium",
      -                      "safari"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "console": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "dom": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "evaluation": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "javascriptDebugger": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "locators": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "css": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "provenance": {
      -                            "items": {
      -                              "enum": [
      -                                "playwright",
      -                                "chromium-cdp",
      -                                "safari-webdriver",
      -                                "safari-bidi",
      -                                "performance-resource-timing",
      -                                "session-policy",
      -                                "webmcp-page-api"
      -                              ],
      -                              "type": "string"
      -                            },
      -                            "maxItems": 2,
      -                            "type": "array"
      -                          },
      -                          "reason": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "state": {
      -                            "enum": [
      -                              "supported",
      -                              "degraded",
      -                              "unsupported"
      -                            ],
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "state",
      -                          "provenance"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "semantic": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "provenance": {
      -                            "items": {
      -                              "enum": [
      -                                "playwright",
      -                                "chromium-cdp",
      -                                "safari-webdriver",
      -                                "safari-bidi",
      -                                "performance-resource-timing",
      -                                "session-policy",
      -                                "webmcp-page-api"
      -                              ],
      -                              "type": "string"
      -                            },
      -                            "maxItems": 2,
      -                            "type": "array"
      -                          },
      -                          "reason": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "state": {
      -                            "enum": [
      -                              "supported",
      -                              "degraded",
      -                              "unsupported"
      -                            ],
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "state",
      -                          "provenance"
      -                        ],
      -                        "type": "object"
      -                      }
      -                    },
      -                    "required": [
      -                      "css",
      -                      "semantic"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "network": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "pageRuntimeEnrichment": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "schemaVersion": {
      -                    "const": 2,
      -                    "type": "number"
      -                  },
      -                  "screenshots": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "tlsBypass": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "transport": {
      -                    "enum": [
      -                      "chromium-launch",
      -                      "chromium-cdp-attach",
      -                      "safari-webdriver"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "viewportMatrix": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "webmcp": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  }
      -                },
      -                "required": [
      -                  "schemaVersion",
      -                  "browser",
      -                  "transport",
      -                  "actions",
      -                  "locators",
      -                  "dom",
      -                  "console",
      -                  "network",
      -                  "screenshots",
      -                  "javascriptDebugger",
      -                  "evaluation",
      -                  "accessibility",
      -                  "pageRuntimeEnrichment",
      -                  "viewportMatrix",
      -                  "tlsBypass",
      -                  "authSeeding",
      -                  "webmcp"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "status": {
      -            "enum": [
      -              "starting",
      -              "ready",
      -              "paused",
      -              "failed",
      -              "closed"
      -            ],
      -            "type": "string"
      -          },
      -          "target": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "browser": {
      -                    "enum": [
      -                      "chromium",
      -                      "safari"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "isolated": {
      -                    "type": "boolean"
      -                  },
      -                  "mode": {
      -                    "enum": [
      -                      "launch",
      -                      "attach",
      -                      "webdriver"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "remote": {
      -                    "type": "boolean"
      -                  },
      -                  "schemaVersion": {
      -                    "const": 1,
      -                    "type": "number"
      -                  },
      -                  "viewport": {
      -                    "anyOf": [
      -                      {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "height": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "width": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          }
      -                        },
      -                        "required": [
      -                          "width",
      -                          "height"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      {
      -                        "type": "null"
      -                      }
      -                    ]
      -                  }
      -                },
      -                "required": [
      -                  "schemaVersion",
      -                  "browser",
      -                  "remote",
      -                  "viewport",
      -                  "isolated"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "url": {
      -            "maxLength": 2560,
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "id",
      -          "url",
      -          "status",
      -          "target",
      -          "projectCapabilities",
      -          "runtimeCapabilities"
      -        ],
      -        "type": "object"
      -      },
      -      "summary": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "bodyText": {
      -            "maxLength": 1000,
      -            "type": "string"
      -          },
      -          "console": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "errors": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "latestErrors": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "level": {
      -                      "enum": [
      -                        "log",
      -                        "info",
      -                        "debug",
      -                        "warning",
      -                        "error",
      -                        "pageerror"
      -                      ],
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "text": {
      -                      "maxLength": 2000,
      -                      "type": "string"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "level",
      -                    "text"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 3,
      -                "type": "array"
      -              },
      -              "total": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "warnings": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              }
      -            },
      -            "required": [
      -              "total",
      -              "errors",
      -              "warnings",
      -              "latestErrors"
      -            ],
      -            "type": "object"
      -          },
      -          "debugger": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "breakpoints": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "callFrames": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "paused": {
      -                "type": "boolean"
      -              },
      -              "reason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 500,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              }
      -            },
      -            "required": [
      -              "paused",
      -              "reason",
      -              "callFrames",
      -              "breakpoints"
      -            ],
      -            "type": "object"
      -          },
      -          "domElements": {
      -            "maximum": 9007199254740991,
      -            "minimum": 0,
      -            "type": "integer"
      -          },
      -          "network": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "failed": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "latestFailures": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "failure": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "method": {
      -                      "maxLength": 50,
      -                      "type": "string"
      -                    },
      -                    "nextActionId": {
      -                      "maxLength": 200,
      -                      "type": "string"
      -                    },
      -                    "ok": {
      -                      "anyOf": [
      -                        {
      -                          "type": "boolean"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "requestId": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "resourceType": {
      -                      "maxLength": 100,
      -                      "type": "string"
      -                    },
      -                    "status": {
      -                      "anyOf": [
      -                        {
      -                          "maximum": 9007199254740991,
      -                          "minimum": -9007199254740991,
      -                          "type": "integer"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "requestId",
      -                    "method",
      -                    "url",
      -                    "resourceType",
      -                    "status",
      -                    "ok"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 3,
      -                "type": "array"
      -              },
      -              "pending": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "total": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              }
      -            },
      -            "required": [
      -              "total",
      -              "failed",
      -              "pending",
      -              "latestFailures"
      -            ],
      -            "type": "object"
      -          },
      -          "observations": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "console": {
      -                    "$ref": "#/definitions/__schema2"
      -                  },
      -                  "dom": {
      -                    "$ref": "#/definitions/__schema1"
      -                  },
      -                  "url": {
      -                    "$ref": "#/definitions/__schema0"
      -                  }
      -                },
      -                "required": [
      -                  "url",
      -                  "dom",
      -                  "console"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "replay": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "frames": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "newestIndex": {
      -                "anyOf": [
      -                  {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "oldestIndex": {
      -                "anyOf": [
      -                  {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "restorable": {
      -                "type": "boolean"
      -              },
      -              "restoreBlockedReason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "frames",
      -              "truncated",
      -              "oldestIndex",
      -              "newestIndex",
      -              "restorable",
      -              "restoreBlockedReason"
      -            ],
      -            "type": "object"
      -          },
      -          "runtimes": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "accessibility": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "angular": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "next": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "react": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "vite": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "vue": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "react",
      -              "angular",
      -              "vue",
      -              "next",
      -              "vite",
      -              "accessibility"
      -            ],
      -            "type": "object"
      -          },
      -          "title": {
      -            "maxLength": 300,
      -            "type": "string"
      -          },
      -          "viewport": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "height": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  "width": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  }
      -                },
      -                "required": [
      -                  "width",
      -                  "height"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "webmcp": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "callableTools": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "state": {
      -                "enum": [
      -                  "supported",
      -                  "degraded",
      -                  "unsupported"
      -                ],
      -                "type": "string"
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "state",
      -              "callableTools",
      -              "truncated"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "title",
      -          "viewport",
      -          "bodyText",
      -          "domElements",
      -          "console",
      -          "network",
      -          "debugger",
      -          "runtimes",
      -          "replay",
      -          "webmcp",
      -          "observations"
      -        ],
      -        "type": "object"
      -      },
      -      "truncation": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "applied": {
      -            "type": "boolean"
      -          },
      -          "omittedSurfaces": {
      -            "items": {
      -              "enum": [
      -                "dom",
      -                "console",
      -                "network",
      -                "debugger",
      -                "react",
      -                "angular",
      -                "vue",
      -                "next",
      -                "vite",
      -                "accessibility",
      -                "replay",
      -                "screenshot",
      -                "webmcp"
      -              ],
      -              "type": "string"
      -            },
      -            "maxItems": 13,
      -            "type": "array"
      -          }
      -        },
      -        "required": [
      -          "applied",
      -          "omittedSurfaces"
      -        ],
      -        "type": "object"
      -      },
      -      "warnings": {
      -        "items": {
      -          "maxLength": 500,
      -          "type": "string"
      -        },
      -        "maxItems": 10,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "schemaVersion",
      -      "capturedAt",
      -      "cursor",
      -      "session",
      -      "project",
      -      "summary",
      -      "redaction",
      -      "warnings",
      -      "truncation",
      -      "profile",
      -      "includedSurfaces",
      -      "details"
      -    ],
      -    "type": "object"
      -  },
      -  {
      -    "additionalProperties": false,
      -    "properties": {
      -      "capturedAt": {
      -        "maxLength": 100,
      -        "type": "string"
      -      },
      -      "changedSurfaces": {
      -        "items": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "maxItems": 13,
      -        "type": "array"
      -      },
      -      "cursor": {
      -        "format": "uuid",
      -        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -        "type": "string"
      -      },
      -      "details": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "accessibility": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema9"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "angular": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema5"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "console": {
      -            "items": {
      -              "additionalProperties": false,
      -              "properties": {
      -                "column": {
      -                  "maximum": 9007199254740991,
      -                  "minimum": -9007199254740991,
      -                  "type": "integer"
      -                },
      -                "level": {
      -                  "enum": [
      -                    "log",
      -                    "info",
      -                    "debug",
      -                    "warning",
      -                    "error",
      -                    "pageerror"
      -                  ],
      -                  "type": "string"
      -                },
      -                "line": {
      -                  "maximum": 9007199254740991,
      -                  "minimum": -9007199254740991,
      -                  "type": "integer"
      -                },
      -                "text": {
      -                  "maxLength": 2000,
      -                  "type": "string"
      -                },
      -                "url": {
      -                  "maxLength": 2560,
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "level",
      -                "text"
      -              ],
      -              "type": "object"
      -            },
      -            "maxItems": 100,
      -            "type": "array"
      -          },
      -          "debugger": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "breakpoints": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "anyOf": [
      -                        {
      -                          "maximum": 9007199254740991,
      -                          "minimum": -9007199254740991,
      -                          "type": "integer"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "id": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "sourceUrl": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "id",
      -                    "sourceUrl",
      -                    "line",
      -                    "column"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 100,
      -                "type": "array"
      -              },
      -              "callFrames": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "functionName": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "locals": {
      -                      "additionalProperties": {
      -                        "$ref": "#/definitions/__schema3"
      -                      },
      -                      "propertyNames": {
      -                        "type": "string"
      -                      },
      -                      "type": "object"
      -                    },
      -                    "scopeNames": {
      -                      "items": {
      -                        "maxLength": 100,
      -                        "type": "string"
      -                      },
      -                      "maxItems": 50,
      -                      "type": "array"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "functionName",
      -                    "url",
      -                    "line",
      -                    "column",
      -                    "scopeNames",
      -                    "locals"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 50,
      -                "type": "array"
      -              },
      -              "paused": {
      -                "type": "boolean"
      -              },
      -              "reason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 500,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              }
      -            },
      -            "required": [
      -              "paused",
      -              "reason",
      -              "callFrames",
      -              "breakpoints"
      -            ],
      -            "type": "object"
      -          },
      -          "dom": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "bodyText": {
      -                "maxLength": 4000,
      -                "type": "string"
      -              },
      -              "elements": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "id": {
      -                      "anyOf": [
      -                        {
      -                          "type": "string"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "role": {
      -                      "anyOf": [
      -                        {
      -                          "type": "string"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "tag": {
      -                      "type": "string"
      -                    },
      -                    "text": {
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "tag",
      -                    "id",
      -                    "role",
      -                    "text"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 50,
      -                "type": "array"
      -              }
      -            },
      -            "required": [
      -              "bodyText",
      -              "elements"
      -            ],
      -            "type": "object"
      -          },
      -          "network": {
      -            "items": {
      -              "additionalProperties": false,
      -              "properties": {
      -                "failure": {
      -                  "maxLength": 500,
      -                  "type": "string"
      -                },
      -                "method": {
      -                  "maxLength": 50,
      -                  "type": "string"
      -                },
      -                "nextActionId": {
      -                  "maxLength": 200,
      -                  "type": "string"
      -                },
      -                "ok": {
      -                  "anyOf": [
      -                    {
      -                      "type": "boolean"
      -                    },
      -                    {
      -                      "type": "null"
      -                    }
      -                  ]
      -                },
      -                "requestId": {
      -                  "maxLength": 500,
      -                  "type": "string"
      -                },
      -                "resourceType": {
      -                  "maxLength": 100,
      -                  "type": "string"
      -                },
      -                "status": {
      -                  "anyOf": [
      -                    {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    {
      -                      "type": "null"
      -                    }
      -                  ]
      -                },
      -                "url": {
      -                  "maxLength": 2560,
      -                  "type": "string"
      -                }
      -              },
      -              "required": [
      -                "requestId",
      -                "method",
      -                "url",
      -                "resourceType",
      -                "status",
      -                "ok"
      -              ],
      -              "type": "object"
      -            },
      -            "maxItems": 100,
      -            "type": "array"
      -          },
      -          "next": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema7"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "react": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema4"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "replay": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "enabled": {
      -                "const": true,
      -                "type": "boolean"
      -              },
      -              "frames": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "action": {
      -                      "anyOf": [
      -                        {
      -                          "oneOf": [
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "navigate",
      -                                  "type": "string"
      -                                },
      -                                "url": {
      -                                  "maxLength": 2560,
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "url"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "click",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "fill",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                },
      -                                "value": {
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "value"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "key": {
      -                                  "maxLength": 40,
      -                                  "type": "string"
      -                                },
      -                                "kind": {
      -                                  "const": "press",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "key"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "select",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                },
      -                                "value": {
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "value"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "checked": {
      -                                  "type": "boolean"
      -                                },
      -                                "kind": {
      -                                  "const": "check",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "checked"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "hover",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "scroll",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "expected": {
      -                                  "anyOf": [
      -                                    {
      -                                      "type": "number"
      -                                    },
      -                                    {
      -                                      "type": "boolean"
      -                                    },
      -                                    {
      -                                      "type": "string"
      -                                    },
      -                                    {
      -                                      "type": "null"
      -                                    }
      -                                  ]
      -                                },
      -                                "kind": {
      -                                  "const": "wait",
      -                                  "type": "string"
      -                                },
      -                                "locator": {
      -                                  "oneOf": [
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "css",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "role",
      -                                          "type": "string"
      -                                        },
      -                                        "name": {
      -                                          "maxLength": 300,
      -                                          "type": "string"
      -                                        },
      -                                        "role": {
      -                                          "maxLength": 100,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "role"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "text",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "label",
      -                                          "type": "string"
      -                                        },
      -                                        "text": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "text"
      -                                      ],
      -                                      "type": "object"
      -                                    },
      -                                    {
      -                                      "additionalProperties": false,
      -                                      "properties": {
      -                                        "kind": {
      -                                          "const": "testId",
      -                                          "type": "string"
      -                                        },
      -                                        "value": {
      -                                          "maxLength": 500,
      -                                          "type": "string"
      -                                        }
      -                                      },
      -                                      "required": [
      -                                        "kind",
      -                                        "value"
      -                                      ],
      -                                      "type": "object"
      -                                    }
      -                                  ]
      -                                },
      -                                "property": {
      -                                  "enum": [
      -                                    "count",
      -                                    "visible",
      -                                    "enabled",
      -                                    "checked",
      -                                    "text"
      -                                  ],
      -                                  "type": "string"
      -                                },
      -                                "timeoutMs": {
      -                                  "maximum": 9007199254740991,
      -                                  "minimum": -9007199254740991,
      -                                  "type": "integer"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind",
      -                                "locator",
      -                                "property",
      -                                "expected"
      -                              ],
      -                              "type": "object"
      -                            },
      -                            {
      -                              "additionalProperties": false,
      -                              "properties": {
      -                                "kind": {
      -                                  "const": "reload",
      -                                  "type": "string"
      -                                }
      -                              },
      -                              "required": [
      -                                "kind"
      -                              ],
      -                              "type": "object"
      -                            }
      -                          ]
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "angular": {
      -                      "anyOf": [
      -                        {
      -                          "$ref": "#/definitions/__schema11"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "attemptId": {
      -                      "anyOf": [
      -                        {
      -                          "type": "string"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "capturedAt": {
      -                      "maxLength": 100,
      -                      "type": "string"
      -                    },
      -                    "console": {
      -                      "items": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "column": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "level": {
      -                            "enum": [
      -                              "log",
      -                              "info",
      -                              "debug",
      -                              "warning",
      -                              "error",
      -                              "pageerror"
      -                            ],
      -                            "type": "string"
      -                          },
      -                          "line": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "text": {
      -                            "maxLength": 2000,
      -                            "type": "string"
      -                          },
      -                          "url": {
      -                            "maxLength": 2560,
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "level",
      -                          "text"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "maxItems": 20,
      -                      "type": "array"
      -                    },
      -                    "debugger": {
      -                      "additionalProperties": false,
      -                      "properties": {
      -                        "breakpoints": {
      -                          "items": {
      -                            "additionalProperties": false,
      -                            "properties": {
      -                              "column": {
      -                                "anyOf": [
      -                                  {
      -                                    "maximum": 9007199254740991,
      -                                    "minimum": -9007199254740991,
      -                                    "type": "integer"
      -                                  },
      -                                  {
      -                                    "type": "null"
      -                                  }
      -                                ]
      -                              },
      -                              "id": {
      -                                "maxLength": 500,
      -                                "type": "string"
      -                              },
      -                              "line": {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              "sourceUrl": {
      -                                "maxLength": 2560,
      -                                "type": "string"
      -                              }
      -                            },
      -                            "required": [
      -                              "id",
      -                              "sourceUrl",
      -                              "line",
      -                              "column"
      -                            ],
      -                            "type": "object"
      -                          },
      -                          "maxItems": 100,
      -                          "type": "array"
      -                        },
      -                        "callFrames": {
      -                          "items": {
      -                            "additionalProperties": false,
      -                            "properties": {
      -                              "column": {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              "functionName": {
      -                                "maxLength": 500,
      -                                "type": "string"
      -                              },
      -                              "line": {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              "locals": {
      -                                "additionalProperties": {
      -                                  "$ref": "#/definitions/__schema3"
      -                                },
      -                                "propertyNames": {
      -                                  "type": "string"
      -                                },
      -                                "type": "object"
      -                              },
      -                              "scopeNames": {
      -                                "items": {
      -                                  "maxLength": 100,
      -                                  "type": "string"
      -                                },
      -                                "maxItems": 50,
      -                                "type": "array"
      -                              },
      -                              "url": {
      -                                "maxLength": 2560,
      -                                "type": "string"
      -                              }
      -                            },
      -                            "required": [
      -                              "functionName",
      -                              "url",
      -                              "line",
      -                              "column",
      -                              "scopeNames",
      -                              "locals"
      -                            ],
      -                            "type": "object"
      -                          },
      -                          "maxItems": 50,
      -                          "type": "array"
      -                        },
      -                        "paused": {
      -                          "type": "boolean"
      -                        },
      -                        "reason": {
      -                          "anyOf": [
      -                            {
      -                              "maxLength": 500,
      -                              "type": "string"
      -                            },
      -                            {
      -                              "type": "null"
      -                            }
      -                          ]
      -                        }
      -                      },
      -                      "required": [
      -                        "paused",
      -                        "reason",
      -                        "callFrames",
      -                        "breakpoints"
      -                      ],
      -                      "type": "object"
      -                    },
      -                    "dom": {
      -                      "additionalProperties": false,
      -                      "properties": {
      -                        "bodyText": {
      -                          "maxLength": 4000,
      -                          "type": "string"
      -                        },
      -                        "elements": {
      -                          "items": {
      -                            "additionalProperties": false,
      -                            "properties": {
      -                              "id": {
      -                                "anyOf": [
      -                                  {
      -                                    "type": "string"
      -                                  },
      -                                  {
      -                                    "type": "null"
      -                                  }
      -                                ]
      -                              },
      -                              "role": {
      -                                "anyOf": [
      -                                  {
      -                                    "type": "string"
      -                                  },
      -                                  {
      -                                    "type": "null"
      -                                  }
      -                                ]
      -                              },
      -                              "tag": {
      -                                "type": "string"
      -                              },
      -                              "text": {
      -                                "type": "string"
      -                              }
      -                            },
      -                            "required": [
      -                              "tag",
      -                              "id",
      -                              "role",
      -                              "text"
      -                            ],
      -                            "type": "object"
      -                          },
      -                          "maxItems": 50,
      -                          "type": "array"
      -                        }
      -                      },
      -                      "required": [
      -                        "bodyText",
      -                        "elements"
      -                      ],
      -                      "type": "object"
      -                    },
      -                    "index": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": 0,
      -                      "type": "integer"
      -                    },
      -                    "network": {
      -                      "items": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "failure": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "method": {
      -                            "maxLength": 50,
      -                            "type": "string"
      -                          },
      -                          "nextActionId": {
      -                            "maxLength": 200,
      -                            "type": "string"
      -                          },
      -                          "ok": {
      -                            "anyOf": [
      -                              {
      -                                "type": "boolean"
      -                              },
      -                              {
      -                                "type": "null"
      -                              }
      -                            ]
      -                          },
      -                          "requestId": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "resourceType": {
      -                            "maxLength": 100,
      -                            "type": "string"
      -                          },
      -                          "status": {
      -                            "anyOf": [
      -                              {
      -                                "maximum": 9007199254740991,
      -                                "minimum": -9007199254740991,
      -                                "type": "integer"
      -                              },
      -                              {
      -                                "type": "null"
      -                              }
      -                            ]
      -                          },
      -                          "url": {
      -                            "maxLength": 2560,
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "requestId",
      -                          "method",
      -                          "url",
      -                          "resourceType",
      -                          "status",
      -                          "ok"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "maxItems": 20,
      -                      "type": "array"
      -                    },
      -                    "react": {
      -                      "anyOf": [
      -                        {
      -                          "$ref": "#/definitions/__schema10"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "title": {
      -                      "maxLength": 300,
      -                      "type": "string"
      -                    },
      -                    "trigger": {
      -                      "enum": [
      -                        "action",
      -                        "capture"
      -                      ],
      -                      "type": "string"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    },
      -                    "vue": {
      -                      "anyOf": [
      -                        {
      -                          "$ref": "#/definitions/__schema12"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    }
      -                  },
      -                  "required": [
      -                    "index",
      -                    "attemptId",
      -                    "capturedAt",
      -                    "trigger",
      -                    "action",
      -                    "url",
      -                    "title",
      -                    "dom",
      -                    "console",
      -                    "network",
      -                    "debugger",
      -                    "react",
      -                    "angular",
      -                    "vue"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 8,
      -                "type": "array"
      -              },
      -              "maxFrames": {
      -                "exclusiveMinimum": 0,
      -                "maximum": 9007199254740991,
      -                "type": "integer"
      -              },
      -              "restorable": {
      -                "type": "boolean"
      -              },
      -              "restoreBlockedReason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "enabled",
      -              "maxFrames",
      -              "truncated",
      -              "restorable",
      -              "restoreBlockedReason",
      -              "frames"
      -            ],
      -            "type": "object"
      -          },
      -          "screenshot": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "status": {
      -                "enum": [
      -                  "captured",
      -                  "suppressed",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "status"
      -            ],
      -            "type": "object"
      -          },
      -          "vite": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema8"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "vue": {
      -            "anyOf": [
      -              {
      -                "$ref": "#/definitions/__schema6"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "webmcp": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "observedAt": {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  "provenance": {
      -                    "const": "webmcp-page-api",
      -                    "type": "string"
      -                  },
      -                  "tools": {
      -                    "items": {
      -                      "additionalProperties": false,
      -                      "properties": {
      -                        "annotations": {
      -                          "additionalProperties": false,
      -                          "properties": {
      -                            "readOnlyHint": {
      -                              "anyOf": [
      -                                {
      -                                  "type": "boolean"
      -                                },
      -                                {
      -                                  "type": "null"
      -                                }
      -                              ]
      -                            },
      -                            "untrustedContentHint": {
      -                              "anyOf": [
      -                                {
      -                                  "type": "boolean"
      -                                },
      -                                {
      -                                  "type": "null"
      -                                }
      -                              ]
      -                            }
      -                          },
      -                          "required": [
      -                            "readOnlyHint",
      -                            "untrustedContentHint"
      -                          ],
      -                          "type": "object"
      -                        },
      -                        "description": {
      -                          "maxLength": 500,
      -                          "type": "string"
      -                        },
      -                        "inputSchemaJson": {
      -                          "anyOf": [
      -                            {
      -                              "maxLength": 8192,
      -                              "type": "string"
      -                            },
      -                            {
      -                              "type": "null"
      -                            }
      -                          ]
      -                        },
      -                        "name": {
      -                          "maxLength": 100,
      -                          "type": "string"
      -                        },
      -                        "origin": {
      -                          "maxLength": 2048,
      -                          "type": "string"
      -                        },
      -                        "title": {
      -                          "anyOf": [
      -                            {
      -                              "maxLength": 200,
      -                              "type": "string"
      -                            },
      -                            {
      -                              "type": "null"
      -                            }
      -                          ]
      -                        },
      -                        "untrusted": {
      -                          "const": true,
      -                          "type": "boolean"
      -                        }
      -                      },
      -                      "required": [
      -                        "origin",
      -                        "name",
      -                        "title",
      -                        "description",
      -                        "inputSchemaJson",
      -                        "annotations",
      -                        "untrusted"
      -                      ],
      -                      "type": "object"
      -                    },
      -                    "maxItems": 16,
      -                    "type": "array"
      -                  },
      -                  "total": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": 0,
      -                    "type": "integer"
      -                  },
      -                  "truncated": {
      -                    "type": "boolean"
      -                  }
      -                },
      -                "required": [
      -                  "provenance",
      -                  "observedAt",
      -                  "total",
      -                  "truncated",
      -                  "tools"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          }
      -        },
      -        "type": "object"
      -      },
      -      "fromCursor": {
      -        "maxLength": 200,
      -        "type": "string"
      -      },
      -      "profile": {
      -        "const": "delta",
      -        "type": "string"
      -      },
      -      "project": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "ambiguous": {
      -            "type": "boolean"
      -          },
      -          "confidence": {
      -            "enum": [
      -              "high",
      -              "medium",
      -              "low",
      -              "none"
      -            ],
      -            "type": "string"
      -          },
      -          "frameworks": {
      -            "items": {
      -              "enum": [
      -                "vanilla",
      -                "react",
      -                "angular",
      -                "vue",
      -                "vite",
      -                "next"
      -              ],
      -              "type": "string"
      -            },
      -            "maxItems": 6,
      -            "type": "array"
      -          },
      -          "projectCapabilities": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "angular": {
      -                "type": "boolean"
      -              },
      -              "browserTarget": {
      -                "type": "boolean"
      -              },
      -              "next": {
      -                "type": "boolean"
      -              },
      -              "react": {
      -                "type": "boolean"
      -              },
      -              "serverRuntime": {
      -                "type": "boolean"
      -              },
      -              "vite": {
      -                "type": "boolean"
      -              },
      -              "vue": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "browserTarget",
      -              "react",
      -              "angular",
      -              "vue",
      -              "vite",
      -              "next",
      -              "serverRuntime"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "frameworks",
      -          "confidence",
      -          "ambiguous",
      -          "projectCapabilities"
      -        ],
      -        "type": "object"
      -      },
      -      "redaction": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "applied": {
      -            "const": true,
      -            "type": "boolean"
      -          },
      -          "policy": {
      -            "const": "default-sensitive-fields",
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "applied",
      -          "policy"
      -        ],
      -        "type": "object"
      -      },
      -      "schemaVersion": {
      -        "const": 5,
      -        "type": "number"
      -      },
      -      "session": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "id": {
      -            "format": "uuid",
      -            "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      -            "type": "string"
      -          },
      -          "projectCapabilities": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "angular": {
      -                "type": "boolean"
      -              },
      -              "browserTarget": {
      -                "type": "boolean"
      -              },
      -              "next": {
      -                "type": "boolean"
      -              },
      -              "react": {
      -                "type": "boolean"
      -              },
      -              "serverRuntime": {
      -                "type": "boolean"
      -              },
      -              "vite": {
      -                "type": "boolean"
      -              },
      -              "vue": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "browserTarget",
      -              "react",
      -              "angular",
      -              "vue",
      -              "vite",
      -              "next",
      -              "serverRuntime"
      -            ],
      -            "type": "object"
      -          },
      -          "runtimeCapabilities": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "accessibility": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "actions": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "authSeeding": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "browser": {
      -                    "enum": [
      -                      "chromium",
      -                      "safari"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "console": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "dom": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "evaluation": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "javascriptDebugger": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "locators": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "css": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "provenance": {
      -                            "items": {
      -                              "enum": [
      -                                "playwright",
      -                                "chromium-cdp",
      -                                "safari-webdriver",
      -                                "safari-bidi",
      -                                "performance-resource-timing",
      -                                "session-policy",
      -                                "webmcp-page-api"
      -                              ],
      -                              "type": "string"
      -                            },
      -                            "maxItems": 2,
      -                            "type": "array"
      -                          },
      -                          "reason": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "state": {
      -                            "enum": [
      -                              "supported",
      -                              "degraded",
      -                              "unsupported"
      -                            ],
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "state",
      -                          "provenance"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      "semantic": {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "provenance": {
      -                            "items": {
      -                              "enum": [
      -                                "playwright",
      -                                "chromium-cdp",
      -                                "safari-webdriver",
      -                                "safari-bidi",
      -                                "performance-resource-timing",
      -                                "session-policy",
      -                                "webmcp-page-api"
      -                              ],
      -                              "type": "string"
      -                            },
      -                            "maxItems": 2,
      -                            "type": "array"
      -                          },
      -                          "reason": {
      -                            "maxLength": 500,
      -                            "type": "string"
      -                          },
      -                          "state": {
      -                            "enum": [
      -                              "supported",
      -                              "degraded",
      -                              "unsupported"
      -                            ],
      -                            "type": "string"
      -                          }
      -                        },
      -                        "required": [
      -                          "state",
      -                          "provenance"
      -                        ],
      -                        "type": "object"
      -                      }
      -                    },
      -                    "required": [
      -                      "css",
      -                      "semantic"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "network": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "pageRuntimeEnrichment": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "schemaVersion": {
      -                    "const": 2,
      -                    "type": "number"
      -                  },
      -                  "screenshots": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "tlsBypass": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "transport": {
      -                    "enum": [
      -                      "chromium-launch",
      -                      "chromium-cdp-attach",
      -                      "safari-webdriver"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "viewportMatrix": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  },
      -                  "webmcp": {
      -                    "additionalProperties": false,
      -                    "properties": {
      -                      "provenance": {
      -                        "items": {
      -                          "enum": [
      -                            "playwright",
      -                            "chromium-cdp",
      -                            "safari-webdriver",
      -                            "safari-bidi",
      -                            "performance-resource-timing",
      -                            "session-policy",
      -                            "webmcp-page-api"
      -                          ],
      -                          "type": "string"
      -                        },
      -                        "maxItems": 2,
      -                        "type": "array"
      -                      },
      -                      "reason": {
      -                        "maxLength": 500,
      -                        "type": "string"
      -                      },
      -                      "state": {
      -                        "enum": [
      -                          "supported",
      -                          "degraded",
      -                          "unsupported"
      -                        ],
      -                        "type": "string"
      -                      }
      -                    },
      -                    "required": [
      -                      "state",
      -                      "provenance"
      -                    ],
      -                    "type": "object"
      -                  }
      -                },
      -                "required": [
      -                  "schemaVersion",
      -                  "browser",
      -                  "transport",
      -                  "actions",
      -                  "locators",
      -                  "dom",
      -                  "console",
      -                  "network",
      -                  "screenshots",
      -                  "javascriptDebugger",
      -                  "evaluation",
      -                  "accessibility",
      -                  "pageRuntimeEnrichment",
      -                  "viewportMatrix",
      -                  "tlsBypass",
      -                  "authSeeding",
      -                  "webmcp"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "status": {
      -            "enum": [
      -              "starting",
      -              "ready",
      -              "paused",
      -              "failed",
      -              "closed"
      -            ],
      -            "type": "string"
      -          },
      -          "target": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "browser": {
      -                    "enum": [
      -                      "chromium",
      -                      "safari"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "isolated": {
      -                    "type": "boolean"
      -                  },
      -                  "mode": {
      -                    "enum": [
      -                      "launch",
      -                      "attach",
      -                      "webdriver"
      -                    ],
      -                    "type": "string"
      -                  },
      -                  "remote": {
      -                    "type": "boolean"
      -                  },
      -                  "schemaVersion": {
      -                    "const": 1,
      -                    "type": "number"
      -                  },
      -                  "viewport": {
      -                    "anyOf": [
      -                      {
      -                        "additionalProperties": false,
      -                        "properties": {
      -                          "height": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          },
      -                          "width": {
      -                            "maximum": 9007199254740991,
      -                            "minimum": -9007199254740991,
      -                            "type": "integer"
      -                          }
      -                        },
      -                        "required": [
      -                          "width",
      -                          "height"
      -                        ],
      -                        "type": "object"
      -                      },
      -                      {
      -                        "type": "null"
      -                      }
      -                    ]
      -                  }
      -                },
      -                "required": [
      -                  "schemaVersion",
      -                  "browser",
      -                  "remote",
      -                  "viewport",
      -                  "isolated"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "url": {
      -            "maxLength": 2560,
      -            "type": "string"
      -          }
      -        },
      -        "required": [
      -          "id",
      -          "url",
      -          "status",
      -          "target",
      -          "projectCapabilities",
      -          "runtimeCapabilities"
      -        ],
      -        "type": "object"
      -      },
      -      "summary": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "bodyText": {
      -            "maxLength": 1000,
      -            "type": "string"
      -          },
      -          "console": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "errors": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "latestErrors": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "column": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "level": {
      -                      "enum": [
      -                        "log",
      -                        "info",
      -                        "debug",
      -                        "warning",
      -                        "error",
      -                        "pageerror"
      -                      ],
      -                      "type": "string"
      -                    },
      -                    "line": {
      -                      "maximum": 9007199254740991,
      -                      "minimum": -9007199254740991,
      -                      "type": "integer"
      -                    },
      -                    "text": {
      -                      "maxLength": 2000,
      -                      "type": "string"
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "level",
      -                    "text"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 3,
      -                "type": "array"
      -              },
      -              "total": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "warnings": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              }
      -            },
      -            "required": [
      -              "total",
      -              "errors",
      -              "warnings",
      -              "latestErrors"
      -            ],
      -            "type": "object"
      -          },
      -          "debugger": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "breakpoints": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "callFrames": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "paused": {
      -                "type": "boolean"
      -              },
      -              "reason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 500,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              }
      -            },
      -            "required": [
      -              "paused",
      -              "reason",
      -              "callFrames",
      -              "breakpoints"
      -            ],
      -            "type": "object"
      -          },
      -          "domElements": {
      -            "maximum": 9007199254740991,
      -            "minimum": 0,
      -            "type": "integer"
      -          },
      -          "network": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "failed": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "latestFailures": {
      -                "items": {
      -                  "additionalProperties": false,
      -                  "properties": {
      -                    "failure": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "method": {
      -                      "maxLength": 50,
      -                      "type": "string"
      -                    },
      -                    "nextActionId": {
      -                      "maxLength": 200,
      -                      "type": "string"
      -                    },
      -                    "ok": {
      -                      "anyOf": [
      -                        {
      -                          "type": "boolean"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "requestId": {
      -                      "maxLength": 500,
      -                      "type": "string"
      -                    },
      -                    "resourceType": {
      -                      "maxLength": 100,
      -                      "type": "string"
      -                    },
      -                    "status": {
      -                      "anyOf": [
      -                        {
      -                          "maximum": 9007199254740991,
      -                          "minimum": -9007199254740991,
      -                          "type": "integer"
      -                        },
      -                        {
      -                          "type": "null"
      -                        }
      -                      ]
      -                    },
      -                    "url": {
      -                      "maxLength": 2560,
      -                      "type": "string"
      -                    }
      -                  },
      -                  "required": [
      -                    "requestId",
      -                    "method",
      -                    "url",
      -                    "resourceType",
      -                    "status",
      -                    "ok"
      -                  ],
      -                  "type": "object"
      -                },
      -                "maxItems": 3,
      -                "type": "array"
      -              },
      -              "pending": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "total": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              }
      -            },
      -            "required": [
      -              "total",
      -              "failed",
      -              "pending",
      -              "latestFailures"
      -            ],
      -            "type": "object"
      -          },
      -          "observations": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "console": {
      -                    "$ref": "#/definitions/__schema2"
      -                  },
      -                  "dom": {
      -                    "$ref": "#/definitions/__schema1"
      -                  },
      -                  "url": {
      -                    "$ref": "#/definitions/__schema0"
      -                  }
      -                },
      -                "required": [
      -                  "url",
      -                  "dom",
      -                  "console"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "replay": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "frames": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "newestIndex": {
      -                "anyOf": [
      -                  {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "oldestIndex": {
      -                "anyOf": [
      -                  {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "restorable": {
      -                "type": "boolean"
      -              },
      -              "restoreBlockedReason": {
      -                "anyOf": [
      -                  {
      -                    "maxLength": 100,
      -                    "type": "string"
      -                  },
      -                  {
      -                    "type": "null"
      -                  }
      -                ]
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "frames",
      -              "truncated",
      -              "oldestIndex",
      -              "newestIndex",
      -              "restorable",
      -              "restoreBlockedReason"
      -            ],
      -            "type": "object"
      -          },
      -          "runtimes": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "accessibility": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "angular": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "next": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "react": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "vite": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              },
      -              "vue": {
      -                "enum": [
      -                  "present",
      -                  "not-detected",
      -                  "unavailable"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "react",
      -              "angular",
      -              "vue",
      -              "next",
      -              "vite",
      -              "accessibility"
      -            ],
      -            "type": "object"
      -          },
      -          "title": {
      -            "maxLength": 300,
      -            "type": "string"
      -          },
      -          "viewport": {
      -            "anyOf": [
      -              {
      -                "additionalProperties": false,
      -                "properties": {
      -                  "height": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  },
      -                  "width": {
      -                    "maximum": 9007199254740991,
      -                    "minimum": -9007199254740991,
      -                    "type": "integer"
      -                  }
      -                },
      -                "required": [
      -                  "width",
      -                  "height"
      -                ],
      -                "type": "object"
      -              },
      -              {
      -                "type": "null"
      -              }
      -            ]
      -          },
      -          "webmcp": {
      -            "additionalProperties": false,
      -            "properties": {
      -              "callableTools": {
      -                "maximum": 9007199254740991,
      -                "minimum": 0,
      -                "type": "integer"
      -              },
      -              "state": {
      -                "enum": [
      -                  "supported",
      -                  "degraded",
      -                  "unsupported"
      -                ],
      -                "type": "string"
      -              },
      -              "truncated": {
      -                "type": "boolean"
      -              }
      -            },
      -            "required": [
      -              "state",
      -              "callableTools",
      -              "truncated"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "title",
      -          "viewport",
      -          "bodyText",
      -          "domElements",
      -          "console",
      -          "network",
      -          "debugger",
      -          "runtimes",
      -          "replay",
      -          "webmcp",
      -          "observations"
      -        ],
      -        "type": "object"
      -      },
      -      "truncation": {
      -        "additionalProperties": false,
      -        "properties": {
      -          "applied": {
      -            "type": "boolean"
      -          },
      -          "omittedSurfaces": {
      -            "items": {
      -              "enum": [
      -                "dom",
      -                "console",
      -                "network",
      -                "debugger",
      -                "react",
      -                "angular",
      -                "vue",
      -                "next",
      -                "vite",
      -                "accessibility",
      -                "replay",
      -                "screenshot",
      -                "webmcp"
      -              ],
      -              "type": "string"
      -            },
      -            "maxItems": 13,
      -            "type": "array"
      -          }
      -        },
      -        "required": [
      -          "applied",
      -          "omittedSurfaces"
      -        ],
      -        "type": "object"
      -      },
      -      "unchangedSurfaces": {
      -        "items": {
      -          "enum": [
      -            "dom",
      -            "console",
      -            "network",
      -            "debugger",
      -            "react",
      -            "angular",
      -            "vue",
      -            "next",
      -            "vite",
      -            "accessibility",
      -            "replay",
      -            "screenshot",
      -            "webmcp"
      -          ],
      -          "type": "string"
      -        },
      -        "maxItems": 13,
      -        "type": "array"
      -      },
      -      "warnings": {
      -        "items": {
      -          "maxLength": 500,
      -          "type": "string"
      -        },
      -        "maxItems": 10,
      -        "type": "array"
      -      }
      -    },
      -    "required": [
      -      "schemaVersion",
      -      "capturedAt",
      -      "cursor",
      -      "session",
      -      "project",
      -      "summary",
      -      "redaction",
      -      "warnings",
      -      "truncation",
      -      "profile",
      -      "fromCursor",
      -      "changedSurfaces",
      -      "unchangedSurfaces",
      -      "details"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "collection": {
      +        "additionalProperties": {
      +          "enum": [
      +            "fresh",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable",
      +            "suppressed"
      +          ],
      +          "type": "string"
      +        },
      +        "propertyNames": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "required": [
      +          "dom",
      +          "console",
      +          "network",
      +          "debugger",
      +          "react",
      +          "angular",
      +          "vue",
      +          "next",
      +          "vite",
      +          "accessibility",
      +          "replay",
      +          "screenshot",
      +          "webmcp"
      +        ],
      +        "type": "object"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "profile": {
      +        "const": "summary",
      +        "type": "string"
      +      },
      +      "project": {
      +        "$ref": "#/definitions/CaptureProject"
      +      },
      +      "redaction": {
      +        "$ref": "#/definitions/CaptureRedaction"
      +      },
      +      "schemaVersion": {
      +        "const": 6,
      +        "type": "number"
      +      },
      +      "session": {
      +        "$ref": "#/definitions/CaptureSession"
      +      },
      +      "summary": {
      +        "$ref": "#/definitions/CaptureSummary"
      +      },
      +      "truncation": {
      +        "$ref": "#/definitions/CaptureTruncation"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "collection",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "collection": {
      +        "additionalProperties": {
      +          "enum": [
      +            "fresh",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable",
      +            "suppressed"
      +          ],
      +          "type": "string"
      +        },
      +        "propertyNames": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "required": [
      +          "dom",
      +          "console",
      +          "network",
      +          "debugger",
      +          "react",
      +          "angular",
      +          "vue",
      +          "next",
      +          "vite",
      +          "accessibility",
      +          "replay",
      +          "screenshot",
      +          "webmcp"
      +        ],
      +        "type": "object"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "details": {
      +        "$ref": "#/definitions/CaptureDetailsOutput"
      +      },
      +      "profile": {
      +        "const": "full",
      +        "type": "string"
      +      },
      +      "project": {
      +        "$ref": "#/definitions/CaptureProject"
      +      },
      +      "redaction": {
      +        "$ref": "#/definitions/CaptureRedaction"
      +      },
      +      "schemaVersion": {
      +        "const": 6,
      +        "type": "number"
      +      },
      +      "session": {
      +        "$ref": "#/definitions/CaptureSession"
      +      },
      +      "summary": {
      +        "$ref": "#/definitions/CaptureSummary"
      +      },
      +      "truncation": {
      +        "$ref": "#/definitions/CaptureTruncation"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "collection",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile",
      +      "details"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "collection": {
      +        "additionalProperties": {
      +          "enum": [
      +            "fresh",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable",
      +            "suppressed"
      +          ],
      +          "type": "string"
      +        },
      +        "propertyNames": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "required": [
      +          "dom",
      +          "console",
      +          "network",
      +          "debugger",
      +          "react",
      +          "angular",
      +          "vue",
      +          "next",
      +          "vite",
      +          "accessibility",
      +          "replay",
      +          "screenshot",
      +          "webmcp"
      +        ],
      +        "type": "object"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "details": {
      +        "$ref": "#/definitions/CaptureDetailsOutput"
      +      },
      +      "includedSurfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 13,
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "profile": {
      +        "const": "include",
      +        "type": "string"
      +      },
      +      "project": {
      +        "$ref": "#/definitions/CaptureProject"
      +      },
      +      "redaction": {
      +        "$ref": "#/definitions/CaptureRedaction"
      +      },
      +      "schemaVersion": {
      +        "const": 6,
      +        "type": "number"
      +      },
      +      "session": {
      +        "$ref": "#/definitions/CaptureSession"
      +      },
      +      "summary": {
      +        "$ref": "#/definitions/CaptureSummary"
      +      },
      +      "truncation": {
      +        "$ref": "#/definitions/CaptureTruncation"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "collection",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile",
      +      "includedSurfaces",
      +      "details"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "changedSurfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 13,
      +        "type": "array"
      +      },
      +      "collection": {
      +        "additionalProperties": {
      +          "enum": [
      +            "fresh",
      +            "stale",
      +            "not-collected",
      +            "not-detected",
      +            "unavailable",
      +            "suppressed"
      +          ],
      +          "type": "string"
      +        },
      +        "propertyNames": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "required": [
      +          "dom",
      +          "console",
      +          "network",
      +          "debugger",
      +          "react",
      +          "angular",
      +          "vue",
      +          "next",
      +          "vite",
      +          "accessibility",
      +          "replay",
      +          "screenshot",
      +          "webmcp"
      +        ],
      +        "type": "object"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "details": {
      +        "$ref": "#/definitions/CaptureDetailsOutput"
      +      },
      +      "fromCursor": {
      +        "maxLength": 200,
      +        "type": "string"
      +      },
      +      "profile": {
      +        "const": "delta",
      +        "type": "string"
      +      },
      +      "project": {
      +        "$ref": "#/definitions/CaptureProject"
      +      },
      +      "redaction": {
      +        "$ref": "#/definitions/CaptureRedaction"
      +      },
      +      "schemaVersion": {
      +        "const": 6,
      +        "type": "number"
      +      },
      +      "session": {
      +        "$ref": "#/definitions/CaptureSession"
      +      },
      +      "summary": {
      +        "$ref": "#/definitions/CaptureSummary"
      +      },
      +      "truncation": {
      +        "$ref": "#/definitions/CaptureTruncation"
      +      },
      +      "unchangedSurfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 13,
      +        "type": "array"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "collection",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile",
      +      "fromCursor",
      +      "changedSurfaces",
      +      "unchangedSurfaces",
      +      "details"
      +    ],
      +    "type": "object"
      +  }
      +]
    • changedOutput schema / properties / error / properties / details / allOf
      Previous value: -[
      -  {
      -    "$ref": "#/definitions/__schema13"
      -  }
      -]New value: +[
      +  {
      +    "$ref": "#/definitions/__schema1"
      +  }
      +]
  3. Changed18 schema fields changedv0.7.0
    • addedInput schema / additionalProperties
      Added value: +false
    • removedInput schema / properties / captureScreenshot
      Removed value: -{
      -  "default": true,
      -  "type": "boolean"
      -}
    • addedInput schema / properties / view
      Added value: +{
      +  "default": {
      +    "profile": "summary"
      +  },
      +  "oneOf": [
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "profile": {
      +          "const": "summary",
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "profile"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "profile": {
      +          "const": "full",
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "profile"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "profile": {
      +          "const": "include",
      +          "type": "string"
      +        },
      +        "surfaces": {
      +          "items": {
      +            "enum": [
      +              "dom",
      +              "console",
      +              "network",
      +              "debugger",
      +              "react",
      +              "angular",
      +              "vue",
      +              "next",
      +              "vite",
      +              "accessibility",
      +              "replay",
      +              "screenshot",
      +              "webmcp"
      +            ],
      +            "type": "string"
      +          },
      +          "maxItems": 13,
      +          "minItems": 1,
      +          "type": "array"
      +        }
      +      },
      +      "required": [
      +        "profile",
      +        "surfaces"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "cursor": {
      +          "maxLength": 200,
      +          "minLength": 1,
      +          "type": "string"
      +        },
      +        "profile": {
      +          "const": "delta",
      +          "type": "string"
      +        },
      +        "surfaces": {
      +          "items": {
      +            "enum": [
      +              "dom",
      +              "console",
      +              "network",
      +              "debugger",
      +              "react",
      +              "angular",
      +              "vue",
      +              "next",
      +              "vite",
      +              "accessibility",
      +              "replay",
      +              "screenshot",
      +              "webmcp"
      +            ],
      +            "type": "string"
      +          },
      +          "maxItems": 13,
      +          "minItems": 1,
      +          "type": "array"
      +        }
      +      },
      +      "required": [
      +        "profile",
      +        "cursor"
      +      ],
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema10
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema10"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema10"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema11
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema11"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema11"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema12
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema12"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema12"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema13
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema13"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema13"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema2
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema2"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema2"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema3
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema3"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema3"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema4
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema4"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema4"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema5
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema5"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema5"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema6
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema6"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema6"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema7
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema7"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema7"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema8
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema8"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema8"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • addedOutput schema / definitions / __schema9
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "number"
      +    },
      +    {
      +      "type": "boolean"
      +    },
      +    {
      +      "type": "null"
      +    },
      +    {
      +      "items": {
      +        "$ref": "#/definitions/__schema9"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "additionalProperties": {
      +        "$ref": "#/definitions/__schema9"
      +      },
      +      "propertyNames": {
      +        "type": "string"
      +      },
      +      "type": "object"
      +    }
      +  ]
      +}
    • removedOutput schema / properties / data / allOf
      Removed value: -[
      -  {
      -    "$ref": "#/definitions/__schema0"
      -  }
      -]
    • addedOutput schema / properties / data / oneOf
      Added value: +[
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "profile": {
      +        "const": "summary",
      +        "type": "string"
      +      },
      +      "project": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "ambiguous": {
      +            "type": "boolean"
      +          },
      +          "confidence": {
      +            "enum": [
      +              "high",
      +              "medium",
      +              "low",
      +              "none"
      +            ],
      +            "type": "string"
      +          },
      +          "frameworks": {
      +            "items": {
      +              "enum": [
      +                "vanilla",
      +                "react",
      +                "angular",
      +                "vue",
      +                "vite",
      +                "next"
      +              ],
      +              "type": "string"
      +            },
      +            "maxItems": 6,
      +            "type": "array"
      +          },
      +          "projectCapabilities": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "angular": {
      +                "type": "boolean"
      +              },
      +              "browserTarget": {
      +                "type": "boolean"
      +              },
      +              "next": {
      +                "type": "boolean"
      +              },
      +              "react": {
      +                "type": "boolean"
      +              },
      +              "serverRuntime": {
      +                "type": "boolean"
      +              },
      +              "vite": {
      +                "type": "boolean"
      +              },
      +              "vue": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "browserTarget",
      +              "react",
      +              "angular",
      +              "vue",
      +              "vite",
      +              "next",
      +              "serverRuntime"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "frameworks",
      +          "confidence",
      +          "ambiguous",
      +          "projectCapabilities"
      +        ],
      +        "type": "object"
      +      },
      +      "redaction": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "applied": {
      +            "const": true,
      +            "type": "boolean"
      +          },
      +          "policy": {
      +            "const": "default-sensitive-fields",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "applied",
      +          "policy"
      +        ],
      +        "type": "object"
      +      },
      +      "schemaVersion": {
      +        "const": 5,
      +        "type": "number"
      +      },
      +      "session": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "id": {
      +            "format": "uuid",
      +            "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +            "type": "string"
      +          },
      +          "projectCapabilities": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "angular": {
      +                "type": "boolean"
      +              },
      +              "browserTarget": {
      +                "type": "boolean"
      +              },
      +              "next": {
      +                "type": "boolean"
      +              },
      +              "react": {
      +                "type": "boolean"
      +              },
      +              "serverRuntime": {
      +                "type": "boolean"
      +              },
      +              "vite": {
      +                "type": "boolean"
      +              },
      +              "vue": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "browserTarget",
      +              "react",
      +              "angular",
      +              "vue",
      +              "vite",
      +              "next",
      +              "serverRuntime"
      +            ],
      +            "type": "object"
      +          },
      +          "runtimeCapabilities": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "accessibility": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "actions": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "authSeeding": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "browser": {
      +                    "enum": [
      +                      "chromium",
      +                      "safari"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "console": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "dom": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "evaluation": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "javascriptDebugger": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "locators": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "css": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "provenance": {
      +                            "items": {
      +                              "enum": [
      +                                "playwright",
      +                                "chromium-cdp",
      +                                "safari-webdriver",
      +                                "safari-bidi",
      +                                "performance-resource-timing",
      +                                "session-policy",
      +                                "webmcp-page-api"
      +                              ],
      +                              "type": "string"
      +                            },
      +                            "maxItems": 2,
      +                            "type": "array"
      +                          },
      +                          "reason": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "state": {
      +                            "enum": [
      +                              "supported",
      +                              "degraded",
      +                              "unsupported"
      +                            ],
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "state",
      +                          "provenance"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "semantic": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "provenance": {
      +                            "items": {
      +                              "enum": [
      +                                "playwright",
      +                                "chromium-cdp",
      +                                "safari-webdriver",
      +                                "safari-bidi",
      +                                "performance-resource-timing",
      +                                "session-policy",
      +                                "webmcp-page-api"
      +                              ],
      +                              "type": "string"
      +                            },
      +                            "maxItems": 2,
      +                            "type": "array"
      +                          },
      +                          "reason": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "state": {
      +                            "enum": [
      +                              "supported",
      +                              "degraded",
      +                              "unsupported"
      +                            ],
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "state",
      +                          "provenance"
      +                        ],
      +                        "type": "object"
      +                      }
      +                    },
      +                    "required": [
      +                      "css",
      +                      "semantic"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "network": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "pageRuntimeEnrichment": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "schemaVersion": {
      +                    "const": 2,
      +                    "type": "number"
      +                  },
      +                  "screenshots": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "tlsBypass": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "transport": {
      +                    "enum": [
      +                      "chromium-launch",
      +                      "chromium-cdp-attach",
      +                      "safari-webdriver"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "viewportMatrix": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "webmcp": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  }
      +                },
      +                "required": [
      +                  "schemaVersion",
      +                  "browser",
      +                  "transport",
      +                  "actions",
      +                  "locators",
      +                  "dom",
      +                  "console",
      +                  "network",
      +                  "screenshots",
      +                  "javascriptDebugger",
      +                  "evaluation",
      +                  "accessibility",
      +                  "pageRuntimeEnrichment",
      +                  "viewportMatrix",
      +                  "tlsBypass",
      +                  "authSeeding",
      +                  "webmcp"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "status": {
      +            "enum": [
      +              "starting",
      +              "ready",
      +              "paused",
      +              "failed",
      +              "closed"
      +            ],
      +            "type": "string"
      +          },
      +          "target": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "browser": {
      +                    "enum": [
      +                      "chromium",
      +                      "safari"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "isolated": {
      +                    "type": "boolean"
      +                  },
      +                  "mode": {
      +                    "enum": [
      +                      "launch",
      +                      "attach",
      +                      "webdriver"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "remote": {
      +                    "type": "boolean"
      +                  },
      +                  "schemaVersion": {
      +                    "const": 1,
      +                    "type": "number"
      +                  },
      +                  "viewport": {
      +                    "anyOf": [
      +                      {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "height": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "width": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          }
      +                        },
      +                        "required": [
      +                          "width",
      +                          "height"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  }
      +                },
      +                "required": [
      +                  "schemaVersion",
      +                  "browser",
      +                  "remote",
      +                  "viewport",
      +                  "isolated"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "url": {
      +            "maxLength": 2560,
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "id",
      +          "url",
      +          "status",
      +          "target",
      +          "projectCapabilities",
      +          "runtimeCapabilities"
      +        ],
      +        "type": "object"
      +      },
      +      "summary": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "bodyText": {
      +            "maxLength": 1000,
      +            "type": "string"
      +          },
      +          "console": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "errors": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "latestErrors": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "level": {
      +                      "enum": [
      +                        "log",
      +                        "info",
      +                        "debug",
      +                        "warning",
      +                        "error",
      +                        "pageerror"
      +                      ],
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "text": {
      +                      "maxLength": 2000,
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "level",
      +                    "text"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 3,
      +                "type": "array"
      +              },
      +              "total": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "warnings": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "total",
      +              "errors",
      +              "warnings",
      +              "latestErrors"
      +            ],
      +            "type": "object"
      +          },
      +          "debugger": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "breakpoints": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "callFrames": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "paused": {
      +                "type": "boolean"
      +              },
      +              "reason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 500,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              }
      +            },
      +            "required": [
      +              "paused",
      +              "reason",
      +              "callFrames",
      +              "breakpoints"
      +            ],
      +            "type": "object"
      +          },
      +          "domElements": {
      +            "maximum": 9007199254740991,
      +            "minimum": 0,
      +            "type": "integer"
      +          },
      +          "network": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "failed": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "latestFailures": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "failure": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "method": {
      +                      "maxLength": 50,
      +                      "type": "string"
      +                    },
      +                    "nextActionId": {
      +                      "maxLength": 200,
      +                      "type": "string"
      +                    },
      +                    "ok": {
      +                      "anyOf": [
      +                        {
      +                          "type": "boolean"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "requestId": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "resourceType": {
      +                      "maxLength": 100,
      +                      "type": "string"
      +                    },
      +                    "status": {
      +                      "anyOf": [
      +                        {
      +                          "maximum": 9007199254740991,
      +                          "minimum": -9007199254740991,
      +                          "type": "integer"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "requestId",
      +                    "method",
      +                    "url",
      +                    "resourceType",
      +                    "status",
      +                    "ok"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 3,
      +                "type": "array"
      +              },
      +              "pending": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "total": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "total",
      +              "failed",
      +              "pending",
      +              "latestFailures"
      +            ],
      +            "type": "object"
      +          },
      +          "observations": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "console": {
      +                    "$ref": "#/definitions/__schema2"
      +                  },
      +                  "dom": {
      +                    "$ref": "#/definitions/__schema1"
      +                  },
      +                  "url": {
      +                    "$ref": "#/definitions/__schema0"
      +                  }
      +                },
      +                "required": [
      +                  "url",
      +                  "dom",
      +                  "console"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "replay": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "frames": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "newestIndex": {
      +                "anyOf": [
      +                  {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "oldestIndex": {
      +                "anyOf": [
      +                  {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "restorable": {
      +                "type": "boolean"
      +              },
      +              "restoreBlockedReason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "frames",
      +              "truncated",
      +              "oldestIndex",
      +              "newestIndex",
      +              "restorable",
      +              "restoreBlockedReason"
      +            ],
      +            "type": "object"
      +          },
      +          "runtimes": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "accessibility": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "angular": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "next": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "react": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "vite": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "vue": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "react",
      +              "angular",
      +              "vue",
      +              "next",
      +              "vite",
      +              "accessibility"
      +            ],
      +            "type": "object"
      +          },
      +          "title": {
      +            "maxLength": 300,
      +            "type": "string"
      +          },
      +          "viewport": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "height": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  "width": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  }
      +                },
      +                "required": [
      +                  "width",
      +                  "height"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "webmcp": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "callableTools": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "state": {
      +                "enum": [
      +                  "supported",
      +                  "degraded",
      +                  "unsupported"
      +                ],
      +                "type": "string"
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "state",
      +              "callableTools",
      +              "truncated"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "title",
      +          "viewport",
      +          "bodyText",
      +          "domElements",
      +          "console",
      +          "network",
      +          "debugger",
      +          "runtimes",
      +          "replay",
      +          "webmcp",
      +          "observations"
      +        ],
      +        "type": "object"
      +      },
      +      "truncation": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "applied": {
      +            "type": "boolean"
      +          },
      +          "omittedSurfaces": {
      +            "items": {
      +              "enum": [
      +                "dom",
      +                "console",
      +                "network",
      +                "debugger",
      +                "react",
      +                "angular",
      +                "vue",
      +                "next",
      +                "vite",
      +                "accessibility",
      +                "replay",
      +                "screenshot",
      +                "webmcp"
      +              ],
      +              "type": "string"
      +            },
      +            "maxItems": 13,
      +            "type": "array"
      +          }
      +        },
      +        "required": [
      +          "applied",
      +          "omittedSurfaces"
      +        ],
      +        "type": "object"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "details": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "accessibility": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema9"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "angular": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema5"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "console": {
      +            "items": {
      +              "additionalProperties": false,
      +              "properties": {
      +                "column": {
      +                  "maximum": 9007199254740991,
      +                  "minimum": -9007199254740991,
      +                  "type": "integer"
      +                },
      +                "level": {
      +                  "enum": [
      +                    "log",
      +                    "info",
      +                    "debug",
      +                    "warning",
      +                    "error",
      +                    "pageerror"
      +                  ],
      +                  "type": "string"
      +                },
      +                "line": {
      +                  "maximum": 9007199254740991,
      +                  "minimum": -9007199254740991,
      +                  "type": "integer"
      +                },
      +                "text": {
      +                  "maxLength": 2000,
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "maxLength": 2560,
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "level",
      +                "text"
      +              ],
      +              "type": "object"
      +            },
      +            "maxItems": 100,
      +            "type": "array"
      +          },
      +          "debugger": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "breakpoints": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "anyOf": [
      +                        {
      +                          "maximum": 9007199254740991,
      +                          "minimum": -9007199254740991,
      +                          "type": "integer"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "id": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "sourceUrl": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "id",
      +                    "sourceUrl",
      +                    "line",
      +                    "column"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 100,
      +                "type": "array"
      +              },
      +              "callFrames": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "functionName": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "locals": {
      +                      "additionalProperties": {
      +                        "$ref": "#/definitions/__schema3"
      +                      },
      +                      "propertyNames": {
      +                        "type": "string"
      +                      },
      +                      "type": "object"
      +                    },
      +                    "scopeNames": {
      +                      "items": {
      +                        "maxLength": 100,
      +                        "type": "string"
      +                      },
      +                      "maxItems": 50,
      +                      "type": "array"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "functionName",
      +                    "url",
      +                    "line",
      +                    "column",
      +                    "scopeNames",
      +                    "locals"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 50,
      +                "type": "array"
      +              },
      +              "paused": {
      +                "type": "boolean"
      +              },
      +              "reason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 500,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              }
      +            },
      +            "required": [
      +              "paused",
      +              "reason",
      +              "callFrames",
      +              "breakpoints"
      +            ],
      +            "type": "object"
      +          },
      +          "dom": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "bodyText": {
      +                "maxLength": 4000,
      +                "type": "string"
      +              },
      +              "elements": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "id": {
      +                      "anyOf": [
      +                        {
      +                          "type": "string"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "role": {
      +                      "anyOf": [
      +                        {
      +                          "type": "string"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "tag": {
      +                      "type": "string"
      +                    },
      +                    "text": {
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "tag",
      +                    "id",
      +                    "role",
      +                    "text"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 50,
      +                "type": "array"
      +              }
      +            },
      +            "required": [
      +              "bodyText",
      +              "elements"
      +            ],
      +            "type": "object"
      +          },
      +          "network": {
      +            "items": {
      +              "additionalProperties": false,
      +              "properties": {
      +                "failure": {
      +                  "maxLength": 500,
      +                  "type": "string"
      +                },
      +                "method": {
      +                  "maxLength": 50,
      +                  "type": "string"
      +                },
      +                "nextActionId": {
      +                  "maxLength": 200,
      +                  "type": "string"
      +                },
      +                "ok": {
      +                  "anyOf": [
      +                    {
      +                      "type": "boolean"
      +                    },
      +                    {
      +                      "type": "null"
      +                    }
      +                  ]
      +                },
      +                "requestId": {
      +                  "maxLength": 500,
      +                  "type": "string"
      +                },
      +                "resourceType": {
      +                  "maxLength": 100,
      +                  "type": "string"
      +                },
      +                "status": {
      +                  "anyOf": [
      +                    {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    {
      +                      "type": "null"
      +                    }
      +                  ]
      +                },
      +                "url": {
      +                  "maxLength": 2560,
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "requestId",
      +                "method",
      +                "url",
      +                "resourceType",
      +                "status",
      +                "ok"
      +              ],
      +              "type": "object"
      +            },
      +            "maxItems": 100,
      +            "type": "array"
      +          },
      +          "next": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema7"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "react": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema4"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "replay": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "enabled": {
      +                "const": true,
      +                "type": "boolean"
      +              },
      +              "frames": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "action": {
      +                      "anyOf": [
      +                        {
      +                          "oneOf": [
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "navigate",
      +                                  "type": "string"
      +                                },
      +                                "url": {
      +                                  "maxLength": 2560,
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "url"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "click",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "fill",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                },
      +                                "value": {
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "value"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "key": {
      +                                  "maxLength": 40,
      +                                  "type": "string"
      +                                },
      +                                "kind": {
      +                                  "const": "press",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "key"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "select",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                },
      +                                "value": {
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "value"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "checked": {
      +                                  "type": "boolean"
      +                                },
      +                                "kind": {
      +                                  "const": "check",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "checked"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "hover",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "scroll",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "expected": {
      +                                  "anyOf": [
      +                                    {
      +                                      "type": "number"
      +                                    },
      +                                    {
      +                                      "type": "boolean"
      +                                    },
      +                                    {
      +                                      "type": "string"
      +                                    },
      +                                    {
      +                                      "type": "null"
      +                                    }
      +                                  ]
      +                                },
      +                                "kind": {
      +                                  "const": "wait",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                },
      +                                "property": {
      +                                  "enum": [
      +                                    "count",
      +                                    "visible",
      +                                    "enabled",
      +                                    "checked",
      +                                    "text"
      +                                  ],
      +                                  "type": "string"
      +                                },
      +                                "timeoutMs": {
      +                                  "maximum": 9007199254740991,
      +                                  "minimum": -9007199254740991,
      +                                  "type": "integer"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "property",
      +                                "expected"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "reload",
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind"
      +                              ],
      +                              "type": "object"
      +                            }
      +                          ]
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "angular": {
      +                      "anyOf": [
      +                        {
      +                          "$ref": "#/definitions/__schema11"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "attemptId": {
      +                      "anyOf": [
      +                        {
      +                          "type": "string"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "capturedAt": {
      +                      "maxLength": 100,
      +                      "type": "string"
      +                    },
      +                    "console": {
      +                      "items": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "column": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "level": {
      +                            "enum": [
      +                              "log",
      +                              "info",
      +                              "debug",
      +                              "warning",
      +                              "error",
      +                              "pageerror"
      +                            ],
      +                            "type": "string"
      +                          },
      +                          "line": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "text": {
      +                            "maxLength": 2000,
      +                            "type": "string"
      +                          },
      +                          "url": {
      +                            "maxLength": 2560,
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "level",
      +                          "text"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "maxItems": 20,
      +                      "type": "array"
      +                    },
      +                    "debugger": {
      +                      "additionalProperties": false,
      +                      "properties": {
      +                        "breakpoints": {
      +                          "items": {
      +                            "additionalProperties": false,
      +                            "properties": {
      +                              "column": {
      +                                "anyOf": [
      +                                  {
      +                                    "maximum": 9007199254740991,
      +                                    "minimum": -9007199254740991,
      +                                    "type": "integer"
      +                                  },
      +                                  {
      +                                    "type": "null"
      +                                  }
      +                                ]
      +                              },
      +                              "id": {
      +                                "maxLength": 500,
      +                                "type": "string"
      +                              },
      +                              "line": {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              "sourceUrl": {
      +                                "maxLength": 2560,
      +                                "type": "string"
      +                              }
      +                            },
      +                            "required": [
      +                              "id",
      +                              "sourceUrl",
      +                              "line",
      +                              "column"
      +                            ],
      +                            "type": "object"
      +                          },
      +                          "maxItems": 100,
      +                          "type": "array"
      +                        },
      +                        "callFrames": {
      +                          "items": {
      +                            "additionalProperties": false,
      +                            "properties": {
      +                              "column": {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              "functionName": {
      +                                "maxLength": 500,
      +                                "type": "string"
      +                              },
      +                              "line": {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              "locals": {
      +                                "additionalProperties": {
      +                                  "$ref": "#/definitions/__schema3"
      +                                },
      +                                "propertyNames": {
      +                                  "type": "string"
      +                                },
      +                                "type": "object"
      +                              },
      +                              "scopeNames": {
      +                                "items": {
      +                                  "maxLength": 100,
      +                                  "type": "string"
      +                                },
      +                                "maxItems": 50,
      +                                "type": "array"
      +                              },
      +                              "url": {
      +                                "maxLength": 2560,
      +                                "type": "string"
      +                              }
      +                            },
      +                            "required": [
      +                              "functionName",
      +                              "url",
      +                              "line",
      +                              "column",
      +                              "scopeNames",
      +                              "locals"
      +                            ],
      +                            "type": "object"
      +                          },
      +                          "maxItems": 50,
      +                          "type": "array"
      +                        },
      +                        "paused": {
      +                          "type": "boolean"
      +                        },
      +                        "reason": {
      +                          "anyOf": [
      +                            {
      +                              "maxLength": 500,
      +                              "type": "string"
      +                            },
      +                            {
      +                              "type": "null"
      +                            }
      +                          ]
      +                        }
      +                      },
      +                      "required": [
      +                        "paused",
      +                        "reason",
      +                        "callFrames",
      +                        "breakpoints"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "dom": {
      +                      "additionalProperties": false,
      +                      "properties": {
      +                        "bodyText": {
      +                          "maxLength": 4000,
      +                          "type": "string"
      +                        },
      +                        "elements": {
      +                          "items": {
      +                            "additionalProperties": false,
      +                            "properties": {
      +                              "id": {
      +                                "anyOf": [
      +                                  {
      +                                    "type": "string"
      +                                  },
      +                                  {
      +                                    "type": "null"
      +                                  }
      +                                ]
      +                              },
      +                              "role": {
      +                                "anyOf": [
      +                                  {
      +                                    "type": "string"
      +                                  },
      +                                  {
      +                                    "type": "null"
      +                                  }
      +                                ]
      +                              },
      +                              "tag": {
      +                                "type": "string"
      +                              },
      +                              "text": {
      +                                "type": "string"
      +                              }
      +                            },
      +                            "required": [
      +                              "tag",
      +                              "id",
      +                              "role",
      +                              "text"
      +                            ],
      +                            "type": "object"
      +                          },
      +                          "maxItems": 50,
      +                          "type": "array"
      +                        }
      +                      },
      +                      "required": [
      +                        "bodyText",
      +                        "elements"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "index": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": 0,
      +                      "type": "integer"
      +                    },
      +                    "network": {
      +                      "items": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "failure": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "method": {
      +                            "maxLength": 50,
      +                            "type": "string"
      +                          },
      +                          "nextActionId": {
      +                            "maxLength": 200,
      +                            "type": "string"
      +                          },
      +                          "ok": {
      +                            "anyOf": [
      +                              {
      +                                "type": "boolean"
      +                              },
      +                              {
      +                                "type": "null"
      +                              }
      +                            ]
      +                          },
      +                          "requestId": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "resourceType": {
      +                            "maxLength": 100,
      +                            "type": "string"
      +                          },
      +                          "status": {
      +                            "anyOf": [
      +                              {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              {
      +                                "type": "null"
      +                              }
      +                            ]
      +                          },
      +                          "url": {
      +                            "maxLength": 2560,
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "requestId",
      +                          "method",
      +                          "url",
      +                          "resourceType",
      +                          "status",
      +                          "ok"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "maxItems": 20,
      +                      "type": "array"
      +                    },
      +                    "react": {
      +                      "anyOf": [
      +                        {
      +                          "$ref": "#/definitions/__schema10"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "title": {
      +                      "maxLength": 300,
      +                      "type": "string"
      +                    },
      +                    "trigger": {
      +                      "enum": [
      +                        "action",
      +                        "capture"
      +                      ],
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    },
      +                    "vue": {
      +                      "anyOf": [
      +                        {
      +                          "$ref": "#/definitions/__schema12"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    }
      +                  },
      +                  "required": [
      +                    "index",
      +                    "attemptId",
      +                    "capturedAt",
      +                    "trigger",
      +                    "action",
      +                    "url",
      +                    "title",
      +                    "dom",
      +                    "console",
      +                    "network",
      +                    "debugger",
      +                    "react",
      +                    "angular",
      +                    "vue"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 8,
      +                "type": "array"
      +              },
      +              "maxFrames": {
      +                "exclusiveMinimum": 0,
      +                "maximum": 9007199254740991,
      +                "type": "integer"
      +              },
      +              "restorable": {
      +                "type": "boolean"
      +              },
      +              "restoreBlockedReason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "enabled",
      +              "maxFrames",
      +              "truncated",
      +              "restorable",
      +              "restoreBlockedReason",
      +              "frames"
      +            ],
      +            "type": "object"
      +          },
      +          "screenshot": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "status": {
      +                "enum": [
      +                  "captured",
      +                  "suppressed",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "status"
      +            ],
      +            "type": "object"
      +          },
      +          "vite": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema8"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "vue": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema6"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "webmcp": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "observedAt": {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  "provenance": {
      +                    "const": "webmcp-page-api",
      +                    "type": "string"
      +                  },
      +                  "tools": {
      +                    "items": {
      +                      "additionalProperties": false,
      +                      "properties": {
      +                        "annotations": {
      +                          "additionalProperties": false,
      +                          "properties": {
      +                            "readOnlyHint": {
      +                              "anyOf": [
      +                                {
      +                                  "type": "boolean"
      +                                },
      +                                {
      +                                  "type": "null"
      +                                }
      +                              ]
      +                            },
      +                            "untrustedContentHint": {
      +                              "anyOf": [
      +                                {
      +                                  "type": "boolean"
      +                                },
      +                                {
      +                                  "type": "null"
      +                                }
      +                              ]
      +                            }
      +                          },
      +                          "required": [
      +                            "readOnlyHint",
      +                            "untrustedContentHint"
      +                          ],
      +                          "type": "object"
      +                        },
      +                        "description": {
      +                          "maxLength": 500,
      +                          "type": "string"
      +                        },
      +                        "inputSchemaJson": {
      +                          "anyOf": [
      +                            {
      +                              "maxLength": 8192,
      +                              "type": "string"
      +                            },
      +                            {
      +                              "type": "null"
      +                            }
      +                          ]
      +                        },
      +                        "name": {
      +                          "maxLength": 100,
      +                          "type": "string"
      +                        },
      +                        "origin": {
      +                          "maxLength": 2048,
      +                          "type": "string"
      +                        },
      +                        "title": {
      +                          "anyOf": [
      +                            {
      +                              "maxLength": 200,
      +                              "type": "string"
      +                            },
      +                            {
      +                              "type": "null"
      +                            }
      +                          ]
      +                        },
      +                        "untrusted": {
      +                          "const": true,
      +                          "type": "boolean"
      +                        }
      +                      },
      +                      "required": [
      +                        "origin",
      +                        "name",
      +                        "title",
      +                        "description",
      +                        "inputSchemaJson",
      +                        "annotations",
      +                        "untrusted"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "maxItems": 16,
      +                    "type": "array"
      +                  },
      +                  "total": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": 0,
      +                    "type": "integer"
      +                  },
      +                  "truncated": {
      +                    "type": "boolean"
      +                  }
      +                },
      +                "required": [
      +                  "provenance",
      +                  "observedAt",
      +                  "total",
      +                  "truncated",
      +                  "tools"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "profile": {
      +        "const": "full",
      +        "type": "string"
      +      },
      +      "project": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "ambiguous": {
      +            "type": "boolean"
      +          },
      +          "confidence": {
      +            "enum": [
      +              "high",
      +              "medium",
      +              "low",
      +              "none"
      +            ],
      +            "type": "string"
      +          },
      +          "frameworks": {
      +            "items": {
      +              "enum": [
      +                "vanilla",
      +                "react",
      +                "angular",
      +                "vue",
      +                "vite",
      +                "next"
      +              ],
      +              "type": "string"
      +            },
      +            "maxItems": 6,
      +            "type": "array"
      +          },
      +          "projectCapabilities": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "angular": {
      +                "type": "boolean"
      +              },
      +              "browserTarget": {
      +                "type": "boolean"
      +              },
      +              "next": {
      +                "type": "boolean"
      +              },
      +              "react": {
      +                "type": "boolean"
      +              },
      +              "serverRuntime": {
      +                "type": "boolean"
      +              },
      +              "vite": {
      +                "type": "boolean"
      +              },
      +              "vue": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "browserTarget",
      +              "react",
      +              "angular",
      +              "vue",
      +              "vite",
      +              "next",
      +              "serverRuntime"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "frameworks",
      +          "confidence",
      +          "ambiguous",
      +          "projectCapabilities"
      +        ],
      +        "type": "object"
      +      },
      +      "redaction": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "applied": {
      +            "const": true,
      +            "type": "boolean"
      +          },
      +          "policy": {
      +            "const": "default-sensitive-fields",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "applied",
      +          "policy"
      +        ],
      +        "type": "object"
      +      },
      +      "schemaVersion": {
      +        "const": 5,
      +        "type": "number"
      +      },
      +      "session": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "id": {
      +            "format": "uuid",
      +            "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +            "type": "string"
      +          },
      +          "projectCapabilities": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "angular": {
      +                "type": "boolean"
      +              },
      +              "browserTarget": {
      +                "type": "boolean"
      +              },
      +              "next": {
      +                "type": "boolean"
      +              },
      +              "react": {
      +                "type": "boolean"
      +              },
      +              "serverRuntime": {
      +                "type": "boolean"
      +              },
      +              "vite": {
      +                "type": "boolean"
      +              },
      +              "vue": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "browserTarget",
      +              "react",
      +              "angular",
      +              "vue",
      +              "vite",
      +              "next",
      +              "serverRuntime"
      +            ],
      +            "type": "object"
      +          },
      +          "runtimeCapabilities": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "accessibility": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "actions": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "authSeeding": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "browser": {
      +                    "enum": [
      +                      "chromium",
      +                      "safari"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "console": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "dom": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "evaluation": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "javascriptDebugger": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "locators": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "css": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "provenance": {
      +                            "items": {
      +                              "enum": [
      +                                "playwright",
      +                                "chromium-cdp",
      +                                "safari-webdriver",
      +                                "safari-bidi",
      +                                "performance-resource-timing",
      +                                "session-policy",
      +                                "webmcp-page-api"
      +                              ],
      +                              "type": "string"
      +                            },
      +                            "maxItems": 2,
      +                            "type": "array"
      +                          },
      +                          "reason": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "state": {
      +                            "enum": [
      +                              "supported",
      +                              "degraded",
      +                              "unsupported"
      +                            ],
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "state",
      +                          "provenance"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "semantic": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "provenance": {
      +                            "items": {
      +                              "enum": [
      +                                "playwright",
      +                                "chromium-cdp",
      +                                "safari-webdriver",
      +                                "safari-bidi",
      +                                "performance-resource-timing",
      +                                "session-policy",
      +                                "webmcp-page-api"
      +                              ],
      +                              "type": "string"
      +                            },
      +                            "maxItems": 2,
      +                            "type": "array"
      +                          },
      +                          "reason": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "state": {
      +                            "enum": [
      +                              "supported",
      +                              "degraded",
      +                              "unsupported"
      +                            ],
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "state",
      +                          "provenance"
      +                        ],
      +                        "type": "object"
      +                      }
      +                    },
      +                    "required": [
      +                      "css",
      +                      "semantic"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "network": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "pageRuntimeEnrichment": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "schemaVersion": {
      +                    "const": 2,
      +                    "type": "number"
      +                  },
      +                  "screenshots": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "tlsBypass": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "transport": {
      +                    "enum": [
      +                      "chromium-launch",
      +                      "chromium-cdp-attach",
      +                      "safari-webdriver"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "viewportMatrix": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "webmcp": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  }
      +                },
      +                "required": [
      +                  "schemaVersion",
      +                  "browser",
      +                  "transport",
      +                  "actions",
      +                  "locators",
      +                  "dom",
      +                  "console",
      +                  "network",
      +                  "screenshots",
      +                  "javascriptDebugger",
      +                  "evaluation",
      +                  "accessibility",
      +                  "pageRuntimeEnrichment",
      +                  "viewportMatrix",
      +                  "tlsBypass",
      +                  "authSeeding",
      +                  "webmcp"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "status": {
      +            "enum": [
      +              "starting",
      +              "ready",
      +              "paused",
      +              "failed",
      +              "closed"
      +            ],
      +            "type": "string"
      +          },
      +          "target": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "browser": {
      +                    "enum": [
      +                      "chromium",
      +                      "safari"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "isolated": {
      +                    "type": "boolean"
      +                  },
      +                  "mode": {
      +                    "enum": [
      +                      "launch",
      +                      "attach",
      +                      "webdriver"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "remote": {
      +                    "type": "boolean"
      +                  },
      +                  "schemaVersion": {
      +                    "const": 1,
      +                    "type": "number"
      +                  },
      +                  "viewport": {
      +                    "anyOf": [
      +                      {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "height": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "width": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          }
      +                        },
      +                        "required": [
      +                          "width",
      +                          "height"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  }
      +                },
      +                "required": [
      +                  "schemaVersion",
      +                  "browser",
      +                  "remote",
      +                  "viewport",
      +                  "isolated"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "url": {
      +            "maxLength": 2560,
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "id",
      +          "url",
      +          "status",
      +          "target",
      +          "projectCapabilities",
      +          "runtimeCapabilities"
      +        ],
      +        "type": "object"
      +      },
      +      "summary": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "bodyText": {
      +            "maxLength": 1000,
      +            "type": "string"
      +          },
      +          "console": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "errors": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "latestErrors": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "level": {
      +                      "enum": [
      +                        "log",
      +                        "info",
      +                        "debug",
      +                        "warning",
      +                        "error",
      +                        "pageerror"
      +                      ],
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "text": {
      +                      "maxLength": 2000,
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "level",
      +                    "text"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 3,
      +                "type": "array"
      +              },
      +              "total": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "warnings": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "total",
      +              "errors",
      +              "warnings",
      +              "latestErrors"
      +            ],
      +            "type": "object"
      +          },
      +          "debugger": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "breakpoints": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "callFrames": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "paused": {
      +                "type": "boolean"
      +              },
      +              "reason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 500,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              }
      +            },
      +            "required": [
      +              "paused",
      +              "reason",
      +              "callFrames",
      +              "breakpoints"
      +            ],
      +            "type": "object"
      +          },
      +          "domElements": {
      +            "maximum": 9007199254740991,
      +            "minimum": 0,
      +            "type": "integer"
      +          },
      +          "network": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "failed": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "latestFailures": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "failure": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "method": {
      +                      "maxLength": 50,
      +                      "type": "string"
      +                    },
      +                    "nextActionId": {
      +                      "maxLength": 200,
      +                      "type": "string"
      +                    },
      +                    "ok": {
      +                      "anyOf": [
      +                        {
      +                          "type": "boolean"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "requestId": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "resourceType": {
      +                      "maxLength": 100,
      +                      "type": "string"
      +                    },
      +                    "status": {
      +                      "anyOf": [
      +                        {
      +                          "maximum": 9007199254740991,
      +                          "minimum": -9007199254740991,
      +                          "type": "integer"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "requestId",
      +                    "method",
      +                    "url",
      +                    "resourceType",
      +                    "status",
      +                    "ok"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 3,
      +                "type": "array"
      +              },
      +              "pending": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "total": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "total",
      +              "failed",
      +              "pending",
      +              "latestFailures"
      +            ],
      +            "type": "object"
      +          },
      +          "observations": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "console": {
      +                    "$ref": "#/definitions/__schema2"
      +                  },
      +                  "dom": {
      +                    "$ref": "#/definitions/__schema1"
      +                  },
      +                  "url": {
      +                    "$ref": "#/definitions/__schema0"
      +                  }
      +                },
      +                "required": [
      +                  "url",
      +                  "dom",
      +                  "console"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "replay": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "frames": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "newestIndex": {
      +                "anyOf": [
      +                  {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "oldestIndex": {
      +                "anyOf": [
      +                  {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "restorable": {
      +                "type": "boolean"
      +              },
      +              "restoreBlockedReason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "frames",
      +              "truncated",
      +              "oldestIndex",
      +              "newestIndex",
      +              "restorable",
      +              "restoreBlockedReason"
      +            ],
      +            "type": "object"
      +          },
      +          "runtimes": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "accessibility": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "angular": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "next": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "react": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "vite": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "vue": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "react",
      +              "angular",
      +              "vue",
      +              "next",
      +              "vite",
      +              "accessibility"
      +            ],
      +            "type": "object"
      +          },
      +          "title": {
      +            "maxLength": 300,
      +            "type": "string"
      +          },
      +          "viewport": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "height": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  "width": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  }
      +                },
      +                "required": [
      +                  "width",
      +                  "height"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "webmcp": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "callableTools": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "state": {
      +                "enum": [
      +                  "supported",
      +                  "degraded",
      +                  "unsupported"
      +                ],
      +                "type": "string"
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "state",
      +              "callableTools",
      +              "truncated"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "title",
      +          "viewport",
      +          "bodyText",
      +          "domElements",
      +          "console",
      +          "network",
      +          "debugger",
      +          "runtimes",
      +          "replay",
      +          "webmcp",
      +          "observations"
      +        ],
      +        "type": "object"
      +      },
      +      "truncation": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "applied": {
      +            "type": "boolean"
      +          },
      +          "omittedSurfaces": {
      +            "items": {
      +              "enum": [
      +                "dom",
      +                "console",
      +                "network",
      +                "debugger",
      +                "react",
      +                "angular",
      +                "vue",
      +                "next",
      +                "vite",
      +                "accessibility",
      +                "replay",
      +                "screenshot",
      +                "webmcp"
      +              ],
      +              "type": "string"
      +            },
      +            "maxItems": 13,
      +            "type": "array"
      +          }
      +        },
      +        "required": [
      +          "applied",
      +          "omittedSurfaces"
      +        ],
      +        "type": "object"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile",
      +      "details"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "details": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "accessibility": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema9"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "angular": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema5"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "console": {
      +            "items": {
      +              "additionalProperties": false,
      +              "properties": {
      +                "column": {
      +                  "maximum": 9007199254740991,
      +                  "minimum": -9007199254740991,
      +                  "type": "integer"
      +                },
      +                "level": {
      +                  "enum": [
      +                    "log",
      +                    "info",
      +                    "debug",
      +                    "warning",
      +                    "error",
      +                    "pageerror"
      +                  ],
      +                  "type": "string"
      +                },
      +                "line": {
      +                  "maximum": 9007199254740991,
      +                  "minimum": -9007199254740991,
      +                  "type": "integer"
      +                },
      +                "text": {
      +                  "maxLength": 2000,
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "maxLength": 2560,
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "level",
      +                "text"
      +              ],
      +              "type": "object"
      +            },
      +            "maxItems": 100,
      +            "type": "array"
      +          },
      +          "debugger": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "breakpoints": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "anyOf": [
      +                        {
      +                          "maximum": 9007199254740991,
      +                          "minimum": -9007199254740991,
      +                          "type": "integer"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "id": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "sourceUrl": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "id",
      +                    "sourceUrl",
      +                    "line",
      +                    "column"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 100,
      +                "type": "array"
      +              },
      +              "callFrames": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "functionName": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "locals": {
      +                      "additionalProperties": {
      +                        "$ref": "#/definitions/__schema3"
      +                      },
      +                      "propertyNames": {
      +                        "type": "string"
      +                      },
      +                      "type": "object"
      +                    },
      +                    "scopeNames": {
      +                      "items": {
      +                        "maxLength": 100,
      +                        "type": "string"
      +                      },
      +                      "maxItems": 50,
      +                      "type": "array"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "functionName",
      +                    "url",
      +                    "line",
      +                    "column",
      +                    "scopeNames",
      +                    "locals"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 50,
      +                "type": "array"
      +              },
      +              "paused": {
      +                "type": "boolean"
      +              },
      +              "reason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 500,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              }
      +            },
      +            "required": [
      +              "paused",
      +              "reason",
      +              "callFrames",
      +              "breakpoints"
      +            ],
      +            "type": "object"
      +          },
      +          "dom": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "bodyText": {
      +                "maxLength": 4000,
      +                "type": "string"
      +              },
      +              "elements": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "id": {
      +                      "anyOf": [
      +                        {
      +                          "type": "string"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "role": {
      +                      "anyOf": [
      +                        {
      +                          "type": "string"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "tag": {
      +                      "type": "string"
      +                    },
      +                    "text": {
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "tag",
      +                    "id",
      +                    "role",
      +                    "text"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 50,
      +                "type": "array"
      +              }
      +            },
      +            "required": [
      +              "bodyText",
      +              "elements"
      +            ],
      +            "type": "object"
      +          },
      +          "network": {
      +            "items": {
      +              "additionalProperties": false,
      +              "properties": {
      +                "failure": {
      +                  "maxLength": 500,
      +                  "type": "string"
      +                },
      +                "method": {
      +                  "maxLength": 50,
      +                  "type": "string"
      +                },
      +                "nextActionId": {
      +                  "maxLength": 200,
      +                  "type": "string"
      +                },
      +                "ok": {
      +                  "anyOf": [
      +                    {
      +                      "type": "boolean"
      +                    },
      +                    {
      +                      "type": "null"
      +                    }
      +                  ]
      +                },
      +                "requestId": {
      +                  "maxLength": 500,
      +                  "type": "string"
      +                },
      +                "resourceType": {
      +                  "maxLength": 100,
      +                  "type": "string"
      +                },
      +                "status": {
      +                  "anyOf": [
      +                    {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    {
      +                      "type": "null"
      +                    }
      +                  ]
      +                },
      +                "url": {
      +                  "maxLength": 2560,
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "requestId",
      +                "method",
      +                "url",
      +                "resourceType",
      +                "status",
      +                "ok"
      +              ],
      +              "type": "object"
      +            },
      +            "maxItems": 100,
      +            "type": "array"
      +          },
      +          "next": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema7"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "react": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema4"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "replay": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "enabled": {
      +                "const": true,
      +                "type": "boolean"
      +              },
      +              "frames": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "action": {
      +                      "anyOf": [
      +                        {
      +                          "oneOf": [
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "navigate",
      +                                  "type": "string"
      +                                },
      +                                "url": {
      +                                  "maxLength": 2560,
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "url"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "click",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "fill",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                },
      +                                "value": {
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "value"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "key": {
      +                                  "maxLength": 40,
      +                                  "type": "string"
      +                                },
      +                                "kind": {
      +                                  "const": "press",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "key"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "select",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                },
      +                                "value": {
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "value"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "checked": {
      +                                  "type": "boolean"
      +                                },
      +                                "kind": {
      +                                  "const": "check",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "checked"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "hover",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "scroll",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "expected": {
      +                                  "anyOf": [
      +                                    {
      +                                      "type": "number"
      +                                    },
      +                                    {
      +                                      "type": "boolean"
      +                                    },
      +                                    {
      +                                      "type": "string"
      +                                    },
      +                                    {
      +                                      "type": "null"
      +                                    }
      +                                  ]
      +                                },
      +                                "kind": {
      +                                  "const": "wait",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                },
      +                                "property": {
      +                                  "enum": [
      +                                    "count",
      +                                    "visible",
      +                                    "enabled",
      +                                    "checked",
      +                                    "text"
      +                                  ],
      +                                  "type": "string"
      +                                },
      +                                "timeoutMs": {
      +                                  "maximum": 9007199254740991,
      +                                  "minimum": -9007199254740991,
      +                                  "type": "integer"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "property",
      +                                "expected"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "reload",
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind"
      +                              ],
      +                              "type": "object"
      +                            }
      +                          ]
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "angular": {
      +                      "anyOf": [
      +                        {
      +                          "$ref": "#/definitions/__schema11"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "attemptId": {
      +                      "anyOf": [
      +                        {
      +                          "type": "string"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "capturedAt": {
      +                      "maxLength": 100,
      +                      "type": "string"
      +                    },
      +                    "console": {
      +                      "items": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "column": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "level": {
      +                            "enum": [
      +                              "log",
      +                              "info",
      +                              "debug",
      +                              "warning",
      +                              "error",
      +                              "pageerror"
      +                            ],
      +                            "type": "string"
      +                          },
      +                          "line": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "text": {
      +                            "maxLength": 2000,
      +                            "type": "string"
      +                          },
      +                          "url": {
      +                            "maxLength": 2560,
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "level",
      +                          "text"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "maxItems": 20,
      +                      "type": "array"
      +                    },
      +                    "debugger": {
      +                      "additionalProperties": false,
      +                      "properties": {
      +                        "breakpoints": {
      +                          "items": {
      +                            "additionalProperties": false,
      +                            "properties": {
      +                              "column": {
      +                                "anyOf": [
      +                                  {
      +                                    "maximum": 9007199254740991,
      +                                    "minimum": -9007199254740991,
      +                                    "type": "integer"
      +                                  },
      +                                  {
      +                                    "type": "null"
      +                                  }
      +                                ]
      +                              },
      +                              "id": {
      +                                "maxLength": 500,
      +                                "type": "string"
      +                              },
      +                              "line": {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              "sourceUrl": {
      +                                "maxLength": 2560,
      +                                "type": "string"
      +                              }
      +                            },
      +                            "required": [
      +                              "id",
      +                              "sourceUrl",
      +                              "line",
      +                              "column"
      +                            ],
      +                            "type": "object"
      +                          },
      +                          "maxItems": 100,
      +                          "type": "array"
      +                        },
      +                        "callFrames": {
      +                          "items": {
      +                            "additionalProperties": false,
      +                            "properties": {
      +                              "column": {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              "functionName": {
      +                                "maxLength": 500,
      +                                "type": "string"
      +                              },
      +                              "line": {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              "locals": {
      +                                "additionalProperties": {
      +                                  "$ref": "#/definitions/__schema3"
      +                                },
      +                                "propertyNames": {
      +                                  "type": "string"
      +                                },
      +                                "type": "object"
      +                              },
      +                              "scopeNames": {
      +                                "items": {
      +                                  "maxLength": 100,
      +                                  "type": "string"
      +                                },
      +                                "maxItems": 50,
      +                                "type": "array"
      +                              },
      +                              "url": {
      +                                "maxLength": 2560,
      +                                "type": "string"
      +                              }
      +                            },
      +                            "required": [
      +                              "functionName",
      +                              "url",
      +                              "line",
      +                              "column",
      +                              "scopeNames",
      +                              "locals"
      +                            ],
      +                            "type": "object"
      +                          },
      +                          "maxItems": 50,
      +                          "type": "array"
      +                        },
      +                        "paused": {
      +                          "type": "boolean"
      +                        },
      +                        "reason": {
      +                          "anyOf": [
      +                            {
      +                              "maxLength": 500,
      +                              "type": "string"
      +                            },
      +                            {
      +                              "type": "null"
      +                            }
      +                          ]
      +                        }
      +                      },
      +                      "required": [
      +                        "paused",
      +                        "reason",
      +                        "callFrames",
      +                        "breakpoints"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "dom": {
      +                      "additionalProperties": false,
      +                      "properties": {
      +                        "bodyText": {
      +                          "maxLength": 4000,
      +                          "type": "string"
      +                        },
      +                        "elements": {
      +                          "items": {
      +                            "additionalProperties": false,
      +                            "properties": {
      +                              "id": {
      +                                "anyOf": [
      +                                  {
      +                                    "type": "string"
      +                                  },
      +                                  {
      +                                    "type": "null"
      +                                  }
      +                                ]
      +                              },
      +                              "role": {
      +                                "anyOf": [
      +                                  {
      +                                    "type": "string"
      +                                  },
      +                                  {
      +                                    "type": "null"
      +                                  }
      +                                ]
      +                              },
      +                              "tag": {
      +                                "type": "string"
      +                              },
      +                              "text": {
      +                                "type": "string"
      +                              }
      +                            },
      +                            "required": [
      +                              "tag",
      +                              "id",
      +                              "role",
      +                              "text"
      +                            ],
      +                            "type": "object"
      +                          },
      +                          "maxItems": 50,
      +                          "type": "array"
      +                        }
      +                      },
      +                      "required": [
      +                        "bodyText",
      +                        "elements"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "index": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": 0,
      +                      "type": "integer"
      +                    },
      +                    "network": {
      +                      "items": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "failure": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "method": {
      +                            "maxLength": 50,
      +                            "type": "string"
      +                          },
      +                          "nextActionId": {
      +                            "maxLength": 200,
      +                            "type": "string"
      +                          },
      +                          "ok": {
      +                            "anyOf": [
      +                              {
      +                                "type": "boolean"
      +                              },
      +                              {
      +                                "type": "null"
      +                              }
      +                            ]
      +                          },
      +                          "requestId": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "resourceType": {
      +                            "maxLength": 100,
      +                            "type": "string"
      +                          },
      +                          "status": {
      +                            "anyOf": [
      +                              {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              {
      +                                "type": "null"
      +                              }
      +                            ]
      +                          },
      +                          "url": {
      +                            "maxLength": 2560,
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "requestId",
      +                          "method",
      +                          "url",
      +                          "resourceType",
      +                          "status",
      +                          "ok"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "maxItems": 20,
      +                      "type": "array"
      +                    },
      +                    "react": {
      +                      "anyOf": [
      +                        {
      +                          "$ref": "#/definitions/__schema10"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "title": {
      +                      "maxLength": 300,
      +                      "type": "string"
      +                    },
      +                    "trigger": {
      +                      "enum": [
      +                        "action",
      +                        "capture"
      +                      ],
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    },
      +                    "vue": {
      +                      "anyOf": [
      +                        {
      +                          "$ref": "#/definitions/__schema12"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    }
      +                  },
      +                  "required": [
      +                    "index",
      +                    "attemptId",
      +                    "capturedAt",
      +                    "trigger",
      +                    "action",
      +                    "url",
      +                    "title",
      +                    "dom",
      +                    "console",
      +                    "network",
      +                    "debugger",
      +                    "react",
      +                    "angular",
      +                    "vue"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 8,
      +                "type": "array"
      +              },
      +              "maxFrames": {
      +                "exclusiveMinimum": 0,
      +                "maximum": 9007199254740991,
      +                "type": "integer"
      +              },
      +              "restorable": {
      +                "type": "boolean"
      +              },
      +              "restoreBlockedReason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "enabled",
      +              "maxFrames",
      +              "truncated",
      +              "restorable",
      +              "restoreBlockedReason",
      +              "frames"
      +            ],
      +            "type": "object"
      +          },
      +          "screenshot": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "status": {
      +                "enum": [
      +                  "captured",
      +                  "suppressed",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "status"
      +            ],
      +            "type": "object"
      +          },
      +          "vite": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema8"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "vue": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema6"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "webmcp": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "observedAt": {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  "provenance": {
      +                    "const": "webmcp-page-api",
      +                    "type": "string"
      +                  },
      +                  "tools": {
      +                    "items": {
      +                      "additionalProperties": false,
      +                      "properties": {
      +                        "annotations": {
      +                          "additionalProperties": false,
      +                          "properties": {
      +                            "readOnlyHint": {
      +                              "anyOf": [
      +                                {
      +                                  "type": "boolean"
      +                                },
      +                                {
      +                                  "type": "null"
      +                                }
      +                              ]
      +                            },
      +                            "untrustedContentHint": {
      +                              "anyOf": [
      +                                {
      +                                  "type": "boolean"
      +                                },
      +                                {
      +                                  "type": "null"
      +                                }
      +                              ]
      +                            }
      +                          },
      +                          "required": [
      +                            "readOnlyHint",
      +                            "untrustedContentHint"
      +                          ],
      +                          "type": "object"
      +                        },
      +                        "description": {
      +                          "maxLength": 500,
      +                          "type": "string"
      +                        },
      +                        "inputSchemaJson": {
      +                          "anyOf": [
      +                            {
      +                              "maxLength": 8192,
      +                              "type": "string"
      +                            },
      +                            {
      +                              "type": "null"
      +                            }
      +                          ]
      +                        },
      +                        "name": {
      +                          "maxLength": 100,
      +                          "type": "string"
      +                        },
      +                        "origin": {
      +                          "maxLength": 2048,
      +                          "type": "string"
      +                        },
      +                        "title": {
      +                          "anyOf": [
      +                            {
      +                              "maxLength": 200,
      +                              "type": "string"
      +                            },
      +                            {
      +                              "type": "null"
      +                            }
      +                          ]
      +                        },
      +                        "untrusted": {
      +                          "const": true,
      +                          "type": "boolean"
      +                        }
      +                      },
      +                      "required": [
      +                        "origin",
      +                        "name",
      +                        "title",
      +                        "description",
      +                        "inputSchemaJson",
      +                        "annotations",
      +                        "untrusted"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "maxItems": 16,
      +                    "type": "array"
      +                  },
      +                  "total": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": 0,
      +                    "type": "integer"
      +                  },
      +                  "truncated": {
      +                    "type": "boolean"
      +                  }
      +                },
      +                "required": [
      +                  "provenance",
      +                  "observedAt",
      +                  "total",
      +                  "truncated",
      +                  "tools"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "includedSurfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 13,
      +        "minItems": 1,
      +        "type": "array"
      +      },
      +      "profile": {
      +        "const": "include",
      +        "type": "string"
      +      },
      +      "project": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "ambiguous": {
      +            "type": "boolean"
      +          },
      +          "confidence": {
      +            "enum": [
      +              "high",
      +              "medium",
      +              "low",
      +              "none"
      +            ],
      +            "type": "string"
      +          },
      +          "frameworks": {
      +            "items": {
      +              "enum": [
      +                "vanilla",
      +                "react",
      +                "angular",
      +                "vue",
      +                "vite",
      +                "next"
      +              ],
      +              "type": "string"
      +            },
      +            "maxItems": 6,
      +            "type": "array"
      +          },
      +          "projectCapabilities": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "angular": {
      +                "type": "boolean"
      +              },
      +              "browserTarget": {
      +                "type": "boolean"
      +              },
      +              "next": {
      +                "type": "boolean"
      +              },
      +              "react": {
      +                "type": "boolean"
      +              },
      +              "serverRuntime": {
      +                "type": "boolean"
      +              },
      +              "vite": {
      +                "type": "boolean"
      +              },
      +              "vue": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "browserTarget",
      +              "react",
      +              "angular",
      +              "vue",
      +              "vite",
      +              "next",
      +              "serverRuntime"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "frameworks",
      +          "confidence",
      +          "ambiguous",
      +          "projectCapabilities"
      +        ],
      +        "type": "object"
      +      },
      +      "redaction": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "applied": {
      +            "const": true,
      +            "type": "boolean"
      +          },
      +          "policy": {
      +            "const": "default-sensitive-fields",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "applied",
      +          "policy"
      +        ],
      +        "type": "object"
      +      },
      +      "schemaVersion": {
      +        "const": 5,
      +        "type": "number"
      +      },
      +      "session": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "id": {
      +            "format": "uuid",
      +            "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +            "type": "string"
      +          },
      +          "projectCapabilities": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "angular": {
      +                "type": "boolean"
      +              },
      +              "browserTarget": {
      +                "type": "boolean"
      +              },
      +              "next": {
      +                "type": "boolean"
      +              },
      +              "react": {
      +                "type": "boolean"
      +              },
      +              "serverRuntime": {
      +                "type": "boolean"
      +              },
      +              "vite": {
      +                "type": "boolean"
      +              },
      +              "vue": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "browserTarget",
      +              "react",
      +              "angular",
      +              "vue",
      +              "vite",
      +              "next",
      +              "serverRuntime"
      +            ],
      +            "type": "object"
      +          },
      +          "runtimeCapabilities": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "accessibility": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "actions": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "authSeeding": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "browser": {
      +                    "enum": [
      +                      "chromium",
      +                      "safari"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "console": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "dom": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "evaluation": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "javascriptDebugger": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "locators": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "css": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "provenance": {
      +                            "items": {
      +                              "enum": [
      +                                "playwright",
      +                                "chromium-cdp",
      +                                "safari-webdriver",
      +                                "safari-bidi",
      +                                "performance-resource-timing",
      +                                "session-policy",
      +                                "webmcp-page-api"
      +                              ],
      +                              "type": "string"
      +                            },
      +                            "maxItems": 2,
      +                            "type": "array"
      +                          },
      +                          "reason": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "state": {
      +                            "enum": [
      +                              "supported",
      +                              "degraded",
      +                              "unsupported"
      +                            ],
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "state",
      +                          "provenance"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "semantic": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "provenance": {
      +                            "items": {
      +                              "enum": [
      +                                "playwright",
      +                                "chromium-cdp",
      +                                "safari-webdriver",
      +                                "safari-bidi",
      +                                "performance-resource-timing",
      +                                "session-policy",
      +                                "webmcp-page-api"
      +                              ],
      +                              "type": "string"
      +                            },
      +                            "maxItems": 2,
      +                            "type": "array"
      +                          },
      +                          "reason": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "state": {
      +                            "enum": [
      +                              "supported",
      +                              "degraded",
      +                              "unsupported"
      +                            ],
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "state",
      +                          "provenance"
      +                        ],
      +                        "type": "object"
      +                      }
      +                    },
      +                    "required": [
      +                      "css",
      +                      "semantic"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "network": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "pageRuntimeEnrichment": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "schemaVersion": {
      +                    "const": 2,
      +                    "type": "number"
      +                  },
      +                  "screenshots": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "tlsBypass": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "transport": {
      +                    "enum": [
      +                      "chromium-launch",
      +                      "chromium-cdp-attach",
      +                      "safari-webdriver"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "viewportMatrix": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "webmcp": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  }
      +                },
      +                "required": [
      +                  "schemaVersion",
      +                  "browser",
      +                  "transport",
      +                  "actions",
      +                  "locators",
      +                  "dom",
      +                  "console",
      +                  "network",
      +                  "screenshots",
      +                  "javascriptDebugger",
      +                  "evaluation",
      +                  "accessibility",
      +                  "pageRuntimeEnrichment",
      +                  "viewportMatrix",
      +                  "tlsBypass",
      +                  "authSeeding",
      +                  "webmcp"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "status": {
      +            "enum": [
      +              "starting",
      +              "ready",
      +              "paused",
      +              "failed",
      +              "closed"
      +            ],
      +            "type": "string"
      +          },
      +          "target": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "browser": {
      +                    "enum": [
      +                      "chromium",
      +                      "safari"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "isolated": {
      +                    "type": "boolean"
      +                  },
      +                  "mode": {
      +                    "enum": [
      +                      "launch",
      +                      "attach",
      +                      "webdriver"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "remote": {
      +                    "type": "boolean"
      +                  },
      +                  "schemaVersion": {
      +                    "const": 1,
      +                    "type": "number"
      +                  },
      +                  "viewport": {
      +                    "anyOf": [
      +                      {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "height": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "width": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          }
      +                        },
      +                        "required": [
      +                          "width",
      +                          "height"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  }
      +                },
      +                "required": [
      +                  "schemaVersion",
      +                  "browser",
      +                  "remote",
      +                  "viewport",
      +                  "isolated"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "url": {
      +            "maxLength": 2560,
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "id",
      +          "url",
      +          "status",
      +          "target",
      +          "projectCapabilities",
      +          "runtimeCapabilities"
      +        ],
      +        "type": "object"
      +      },
      +      "summary": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "bodyText": {
      +            "maxLength": 1000,
      +            "type": "string"
      +          },
      +          "console": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "errors": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "latestErrors": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "level": {
      +                      "enum": [
      +                        "log",
      +                        "info",
      +                        "debug",
      +                        "warning",
      +                        "error",
      +                        "pageerror"
      +                      ],
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "text": {
      +                      "maxLength": 2000,
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "level",
      +                    "text"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 3,
      +                "type": "array"
      +              },
      +              "total": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "warnings": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "total",
      +              "errors",
      +              "warnings",
      +              "latestErrors"
      +            ],
      +            "type": "object"
      +          },
      +          "debugger": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "breakpoints": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "callFrames": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "paused": {
      +                "type": "boolean"
      +              },
      +              "reason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 500,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              }
      +            },
      +            "required": [
      +              "paused",
      +              "reason",
      +              "callFrames",
      +              "breakpoints"
      +            ],
      +            "type": "object"
      +          },
      +          "domElements": {
      +            "maximum": 9007199254740991,
      +            "minimum": 0,
      +            "type": "integer"
      +          },
      +          "network": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "failed": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "latestFailures": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "failure": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "method": {
      +                      "maxLength": 50,
      +                      "type": "string"
      +                    },
      +                    "nextActionId": {
      +                      "maxLength": 200,
      +                      "type": "string"
      +                    },
      +                    "ok": {
      +                      "anyOf": [
      +                        {
      +                          "type": "boolean"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "requestId": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "resourceType": {
      +                      "maxLength": 100,
      +                      "type": "string"
      +                    },
      +                    "status": {
      +                      "anyOf": [
      +                        {
      +                          "maximum": 9007199254740991,
      +                          "minimum": -9007199254740991,
      +                          "type": "integer"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "requestId",
      +                    "method",
      +                    "url",
      +                    "resourceType",
      +                    "status",
      +                    "ok"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 3,
      +                "type": "array"
      +              },
      +              "pending": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "total": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "total",
      +              "failed",
      +              "pending",
      +              "latestFailures"
      +            ],
      +            "type": "object"
      +          },
      +          "observations": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "console": {
      +                    "$ref": "#/definitions/__schema2"
      +                  },
      +                  "dom": {
      +                    "$ref": "#/definitions/__schema1"
      +                  },
      +                  "url": {
      +                    "$ref": "#/definitions/__schema0"
      +                  }
      +                },
      +                "required": [
      +                  "url",
      +                  "dom",
      +                  "console"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "replay": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "frames": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "newestIndex": {
      +                "anyOf": [
      +                  {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "oldestIndex": {
      +                "anyOf": [
      +                  {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "restorable": {
      +                "type": "boolean"
      +              },
      +              "restoreBlockedReason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "frames",
      +              "truncated",
      +              "oldestIndex",
      +              "newestIndex",
      +              "restorable",
      +              "restoreBlockedReason"
      +            ],
      +            "type": "object"
      +          },
      +          "runtimes": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "accessibility": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "angular": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "next": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "react": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "vite": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "vue": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "react",
      +              "angular",
      +              "vue",
      +              "next",
      +              "vite",
      +              "accessibility"
      +            ],
      +            "type": "object"
      +          },
      +          "title": {
      +            "maxLength": 300,
      +            "type": "string"
      +          },
      +          "viewport": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "height": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  "width": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  }
      +                },
      +                "required": [
      +                  "width",
      +                  "height"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "webmcp": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "callableTools": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "state": {
      +                "enum": [
      +                  "supported",
      +                  "degraded",
      +                  "unsupported"
      +                ],
      +                "type": "string"
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "state",
      +              "callableTools",
      +              "truncated"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "title",
      +          "viewport",
      +          "bodyText",
      +          "domElements",
      +          "console",
      +          "network",
      +          "debugger",
      +          "runtimes",
      +          "replay",
      +          "webmcp",
      +          "observations"
      +        ],
      +        "type": "object"
      +      },
      +      "truncation": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "applied": {
      +            "type": "boolean"
      +          },
      +          "omittedSurfaces": {
      +            "items": {
      +              "enum": [
      +                "dom",
      +                "console",
      +                "network",
      +                "debugger",
      +                "react",
      +                "angular",
      +                "vue",
      +                "next",
      +                "vite",
      +                "accessibility",
      +                "replay",
      +                "screenshot",
      +                "webmcp"
      +              ],
      +              "type": "string"
      +            },
      +            "maxItems": 13,
      +            "type": "array"
      +          }
      +        },
      +        "required": [
      +          "applied",
      +          "omittedSurfaces"
      +        ],
      +        "type": "object"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile",
      +      "includedSurfaces",
      +      "details"
      +    ],
      +    "type": "object"
      +  },
      +  {
      +    "additionalProperties": false,
      +    "properties": {
      +      "capturedAt": {
      +        "maxLength": 100,
      +        "type": "string"
      +      },
      +      "changedSurfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 13,
      +        "type": "array"
      +      },
      +      "cursor": {
      +        "format": "uuid",
      +        "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +        "type": "string"
      +      },
      +      "details": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "accessibility": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema9"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "angular": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema5"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "console": {
      +            "items": {
      +              "additionalProperties": false,
      +              "properties": {
      +                "column": {
      +                  "maximum": 9007199254740991,
      +                  "minimum": -9007199254740991,
      +                  "type": "integer"
      +                },
      +                "level": {
      +                  "enum": [
      +                    "log",
      +                    "info",
      +                    "debug",
      +                    "warning",
      +                    "error",
      +                    "pageerror"
      +                  ],
      +                  "type": "string"
      +                },
      +                "line": {
      +                  "maximum": 9007199254740991,
      +                  "minimum": -9007199254740991,
      +                  "type": "integer"
      +                },
      +                "text": {
      +                  "maxLength": 2000,
      +                  "type": "string"
      +                },
      +                "url": {
      +                  "maxLength": 2560,
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "level",
      +                "text"
      +              ],
      +              "type": "object"
      +            },
      +            "maxItems": 100,
      +            "type": "array"
      +          },
      +          "debugger": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "breakpoints": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "anyOf": [
      +                        {
      +                          "maximum": 9007199254740991,
      +                          "minimum": -9007199254740991,
      +                          "type": "integer"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "id": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "sourceUrl": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "id",
      +                    "sourceUrl",
      +                    "line",
      +                    "column"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 100,
      +                "type": "array"
      +              },
      +              "callFrames": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "functionName": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "locals": {
      +                      "additionalProperties": {
      +                        "$ref": "#/definitions/__schema3"
      +                      },
      +                      "propertyNames": {
      +                        "type": "string"
      +                      },
      +                      "type": "object"
      +                    },
      +                    "scopeNames": {
      +                      "items": {
      +                        "maxLength": 100,
      +                        "type": "string"
      +                      },
      +                      "maxItems": 50,
      +                      "type": "array"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "functionName",
      +                    "url",
      +                    "line",
      +                    "column",
      +                    "scopeNames",
      +                    "locals"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 50,
      +                "type": "array"
      +              },
      +              "paused": {
      +                "type": "boolean"
      +              },
      +              "reason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 500,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              }
      +            },
      +            "required": [
      +              "paused",
      +              "reason",
      +              "callFrames",
      +              "breakpoints"
      +            ],
      +            "type": "object"
      +          },
      +          "dom": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "bodyText": {
      +                "maxLength": 4000,
      +                "type": "string"
      +              },
      +              "elements": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "id": {
      +                      "anyOf": [
      +                        {
      +                          "type": "string"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "role": {
      +                      "anyOf": [
      +                        {
      +                          "type": "string"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "tag": {
      +                      "type": "string"
      +                    },
      +                    "text": {
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "tag",
      +                    "id",
      +                    "role",
      +                    "text"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 50,
      +                "type": "array"
      +              }
      +            },
      +            "required": [
      +              "bodyText",
      +              "elements"
      +            ],
      +            "type": "object"
      +          },
      +          "network": {
      +            "items": {
      +              "additionalProperties": false,
      +              "properties": {
      +                "failure": {
      +                  "maxLength": 500,
      +                  "type": "string"
      +                },
      +                "method": {
      +                  "maxLength": 50,
      +                  "type": "string"
      +                },
      +                "nextActionId": {
      +                  "maxLength": 200,
      +                  "type": "string"
      +                },
      +                "ok": {
      +                  "anyOf": [
      +                    {
      +                      "type": "boolean"
      +                    },
      +                    {
      +                      "type": "null"
      +                    }
      +                  ]
      +                },
      +                "requestId": {
      +                  "maxLength": 500,
      +                  "type": "string"
      +                },
      +                "resourceType": {
      +                  "maxLength": 100,
      +                  "type": "string"
      +                },
      +                "status": {
      +                  "anyOf": [
      +                    {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    {
      +                      "type": "null"
      +                    }
      +                  ]
      +                },
      +                "url": {
      +                  "maxLength": 2560,
      +                  "type": "string"
      +                }
      +              },
      +              "required": [
      +                "requestId",
      +                "method",
      +                "url",
      +                "resourceType",
      +                "status",
      +                "ok"
      +              ],
      +              "type": "object"
      +            },
      +            "maxItems": 100,
      +            "type": "array"
      +          },
      +          "next": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema7"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "react": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema4"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "replay": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "enabled": {
      +                "const": true,
      +                "type": "boolean"
      +              },
      +              "frames": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "action": {
      +                      "anyOf": [
      +                        {
      +                          "oneOf": [
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "navigate",
      +                                  "type": "string"
      +                                },
      +                                "url": {
      +                                  "maxLength": 2560,
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "url"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "click",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "fill",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                },
      +                                "value": {
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "value"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "key": {
      +                                  "maxLength": 40,
      +                                  "type": "string"
      +                                },
      +                                "kind": {
      +                                  "const": "press",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "key"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "select",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                },
      +                                "value": {
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "value"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "checked": {
      +                                  "type": "boolean"
      +                                },
      +                                "kind": {
      +                                  "const": "check",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "checked"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "hover",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "scroll",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "expected": {
      +                                  "anyOf": [
      +                                    {
      +                                      "type": "number"
      +                                    },
      +                                    {
      +                                      "type": "boolean"
      +                                    },
      +                                    {
      +                                      "type": "string"
      +                                    },
      +                                    {
      +                                      "type": "null"
      +                                    }
      +                                  ]
      +                                },
      +                                "kind": {
      +                                  "const": "wait",
      +                                  "type": "string"
      +                                },
      +                                "locator": {
      +                                  "oneOf": [
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "css",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "role",
      +                                          "type": "string"
      +                                        },
      +                                        "name": {
      +                                          "maxLength": 300,
      +                                          "type": "string"
      +                                        },
      +                                        "role": {
      +                                          "maxLength": 100,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "role"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "text",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "label",
      +                                          "type": "string"
      +                                        },
      +                                        "text": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "text"
      +                                      ],
      +                                      "type": "object"
      +                                    },
      +                                    {
      +                                      "additionalProperties": false,
      +                                      "properties": {
      +                                        "kind": {
      +                                          "const": "testId",
      +                                          "type": "string"
      +                                        },
      +                                        "value": {
      +                                          "maxLength": 500,
      +                                          "type": "string"
      +                                        }
      +                                      },
      +                                      "required": [
      +                                        "kind",
      +                                        "value"
      +                                      ],
      +                                      "type": "object"
      +                                    }
      +                                  ]
      +                                },
      +                                "property": {
      +                                  "enum": [
      +                                    "count",
      +                                    "visible",
      +                                    "enabled",
      +                                    "checked",
      +                                    "text"
      +                                  ],
      +                                  "type": "string"
      +                                },
      +                                "timeoutMs": {
      +                                  "maximum": 9007199254740991,
      +                                  "minimum": -9007199254740991,
      +                                  "type": "integer"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind",
      +                                "locator",
      +                                "property",
      +                                "expected"
      +                              ],
      +                              "type": "object"
      +                            },
      +                            {
      +                              "additionalProperties": false,
      +                              "properties": {
      +                                "kind": {
      +                                  "const": "reload",
      +                                  "type": "string"
      +                                }
      +                              },
      +                              "required": [
      +                                "kind"
      +                              ],
      +                              "type": "object"
      +                            }
      +                          ]
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "angular": {
      +                      "anyOf": [
      +                        {
      +                          "$ref": "#/definitions/__schema11"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "attemptId": {
      +                      "anyOf": [
      +                        {
      +                          "type": "string"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "capturedAt": {
      +                      "maxLength": 100,
      +                      "type": "string"
      +                    },
      +                    "console": {
      +                      "items": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "column": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "level": {
      +                            "enum": [
      +                              "log",
      +                              "info",
      +                              "debug",
      +                              "warning",
      +                              "error",
      +                              "pageerror"
      +                            ],
      +                            "type": "string"
      +                          },
      +                          "line": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "text": {
      +                            "maxLength": 2000,
      +                            "type": "string"
      +                          },
      +                          "url": {
      +                            "maxLength": 2560,
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "level",
      +                          "text"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "maxItems": 20,
      +                      "type": "array"
      +                    },
      +                    "debugger": {
      +                      "additionalProperties": false,
      +                      "properties": {
      +                        "breakpoints": {
      +                          "items": {
      +                            "additionalProperties": false,
      +                            "properties": {
      +                              "column": {
      +                                "anyOf": [
      +                                  {
      +                                    "maximum": 9007199254740991,
      +                                    "minimum": -9007199254740991,
      +                                    "type": "integer"
      +                                  },
      +                                  {
      +                                    "type": "null"
      +                                  }
      +                                ]
      +                              },
      +                              "id": {
      +                                "maxLength": 500,
      +                                "type": "string"
      +                              },
      +                              "line": {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              "sourceUrl": {
      +                                "maxLength": 2560,
      +                                "type": "string"
      +                              }
      +                            },
      +                            "required": [
      +                              "id",
      +                              "sourceUrl",
      +                              "line",
      +                              "column"
      +                            ],
      +                            "type": "object"
      +                          },
      +                          "maxItems": 100,
      +                          "type": "array"
      +                        },
      +                        "callFrames": {
      +                          "items": {
      +                            "additionalProperties": false,
      +                            "properties": {
      +                              "column": {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              "functionName": {
      +                                "maxLength": 500,
      +                                "type": "string"
      +                              },
      +                              "line": {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              "locals": {
      +                                "additionalProperties": {
      +                                  "$ref": "#/definitions/__schema3"
      +                                },
      +                                "propertyNames": {
      +                                  "type": "string"
      +                                },
      +                                "type": "object"
      +                              },
      +                              "scopeNames": {
      +                                "items": {
      +                                  "maxLength": 100,
      +                                  "type": "string"
      +                                },
      +                                "maxItems": 50,
      +                                "type": "array"
      +                              },
      +                              "url": {
      +                                "maxLength": 2560,
      +                                "type": "string"
      +                              }
      +                            },
      +                            "required": [
      +                              "functionName",
      +                              "url",
      +                              "line",
      +                              "column",
      +                              "scopeNames",
      +                              "locals"
      +                            ],
      +                            "type": "object"
      +                          },
      +                          "maxItems": 50,
      +                          "type": "array"
      +                        },
      +                        "paused": {
      +                          "type": "boolean"
      +                        },
      +                        "reason": {
      +                          "anyOf": [
      +                            {
      +                              "maxLength": 500,
      +                              "type": "string"
      +                            },
      +                            {
      +                              "type": "null"
      +                            }
      +                          ]
      +                        }
      +                      },
      +                      "required": [
      +                        "paused",
      +                        "reason",
      +                        "callFrames",
      +                        "breakpoints"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "dom": {
      +                      "additionalProperties": false,
      +                      "properties": {
      +                        "bodyText": {
      +                          "maxLength": 4000,
      +                          "type": "string"
      +                        },
      +                        "elements": {
      +                          "items": {
      +                            "additionalProperties": false,
      +                            "properties": {
      +                              "id": {
      +                                "anyOf": [
      +                                  {
      +                                    "type": "string"
      +                                  },
      +                                  {
      +                                    "type": "null"
      +                                  }
      +                                ]
      +                              },
      +                              "role": {
      +                                "anyOf": [
      +                                  {
      +                                    "type": "string"
      +                                  },
      +                                  {
      +                                    "type": "null"
      +                                  }
      +                                ]
      +                              },
      +                              "tag": {
      +                                "type": "string"
      +                              },
      +                              "text": {
      +                                "type": "string"
      +                              }
      +                            },
      +                            "required": [
      +                              "tag",
      +                              "id",
      +                              "role",
      +                              "text"
      +                            ],
      +                            "type": "object"
      +                          },
      +                          "maxItems": 50,
      +                          "type": "array"
      +                        }
      +                      },
      +                      "required": [
      +                        "bodyText",
      +                        "elements"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "index": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": 0,
      +                      "type": "integer"
      +                    },
      +                    "network": {
      +                      "items": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "failure": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "method": {
      +                            "maxLength": 50,
      +                            "type": "string"
      +                          },
      +                          "nextActionId": {
      +                            "maxLength": 200,
      +                            "type": "string"
      +                          },
      +                          "ok": {
      +                            "anyOf": [
      +                              {
      +                                "type": "boolean"
      +                              },
      +                              {
      +                                "type": "null"
      +                              }
      +                            ]
      +                          },
      +                          "requestId": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "resourceType": {
      +                            "maxLength": 100,
      +                            "type": "string"
      +                          },
      +                          "status": {
      +                            "anyOf": [
      +                              {
      +                                "maximum": 9007199254740991,
      +                                "minimum": -9007199254740991,
      +                                "type": "integer"
      +                              },
      +                              {
      +                                "type": "null"
      +                              }
      +                            ]
      +                          },
      +                          "url": {
      +                            "maxLength": 2560,
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "requestId",
      +                          "method",
      +                          "url",
      +                          "resourceType",
      +                          "status",
      +                          "ok"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "maxItems": 20,
      +                      "type": "array"
      +                    },
      +                    "react": {
      +                      "anyOf": [
      +                        {
      +                          "$ref": "#/definitions/__schema10"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "title": {
      +                      "maxLength": 300,
      +                      "type": "string"
      +                    },
      +                    "trigger": {
      +                      "enum": [
      +                        "action",
      +                        "capture"
      +                      ],
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    },
      +                    "vue": {
      +                      "anyOf": [
      +                        {
      +                          "$ref": "#/definitions/__schema12"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    }
      +                  },
      +                  "required": [
      +                    "index",
      +                    "attemptId",
      +                    "capturedAt",
      +                    "trigger",
      +                    "action",
      +                    "url",
      +                    "title",
      +                    "dom",
      +                    "console",
      +                    "network",
      +                    "debugger",
      +                    "react",
      +                    "angular",
      +                    "vue"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 8,
      +                "type": "array"
      +              },
      +              "maxFrames": {
      +                "exclusiveMinimum": 0,
      +                "maximum": 9007199254740991,
      +                "type": "integer"
      +              },
      +              "restorable": {
      +                "type": "boolean"
      +              },
      +              "restoreBlockedReason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "enabled",
      +              "maxFrames",
      +              "truncated",
      +              "restorable",
      +              "restoreBlockedReason",
      +              "frames"
      +            ],
      +            "type": "object"
      +          },
      +          "screenshot": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "status": {
      +                "enum": [
      +                  "captured",
      +                  "suppressed",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "status"
      +            ],
      +            "type": "object"
      +          },
      +          "vite": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema8"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "vue": {
      +            "anyOf": [
      +              {
      +                "$ref": "#/definitions/__schema6"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "webmcp": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "observedAt": {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  "provenance": {
      +                    "const": "webmcp-page-api",
      +                    "type": "string"
      +                  },
      +                  "tools": {
      +                    "items": {
      +                      "additionalProperties": false,
      +                      "properties": {
      +                        "annotations": {
      +                          "additionalProperties": false,
      +                          "properties": {
      +                            "readOnlyHint": {
      +                              "anyOf": [
      +                                {
      +                                  "type": "boolean"
      +                                },
      +                                {
      +                                  "type": "null"
      +                                }
      +                              ]
      +                            },
      +                            "untrustedContentHint": {
      +                              "anyOf": [
      +                                {
      +                                  "type": "boolean"
      +                                },
      +                                {
      +                                  "type": "null"
      +                                }
      +                              ]
      +                            }
      +                          },
      +                          "required": [
      +                            "readOnlyHint",
      +                            "untrustedContentHint"
      +                          ],
      +                          "type": "object"
      +                        },
      +                        "description": {
      +                          "maxLength": 500,
      +                          "type": "string"
      +                        },
      +                        "inputSchemaJson": {
      +                          "anyOf": [
      +                            {
      +                              "maxLength": 8192,
      +                              "type": "string"
      +                            },
      +                            {
      +                              "type": "null"
      +                            }
      +                          ]
      +                        },
      +                        "name": {
      +                          "maxLength": 100,
      +                          "type": "string"
      +                        },
      +                        "origin": {
      +                          "maxLength": 2048,
      +                          "type": "string"
      +                        },
      +                        "title": {
      +                          "anyOf": [
      +                            {
      +                              "maxLength": 200,
      +                              "type": "string"
      +                            },
      +                            {
      +                              "type": "null"
      +                            }
      +                          ]
      +                        },
      +                        "untrusted": {
      +                          "const": true,
      +                          "type": "boolean"
      +                        }
      +                      },
      +                      "required": [
      +                        "origin",
      +                        "name",
      +                        "title",
      +                        "description",
      +                        "inputSchemaJson",
      +                        "annotations",
      +                        "untrusted"
      +                      ],
      +                      "type": "object"
      +                    },
      +                    "maxItems": 16,
      +                    "type": "array"
      +                  },
      +                  "total": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": 0,
      +                    "type": "integer"
      +                  },
      +                  "truncated": {
      +                    "type": "boolean"
      +                  }
      +                },
      +                "required": [
      +                  "provenance",
      +                  "observedAt",
      +                  "total",
      +                  "truncated",
      +                  "tools"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "fromCursor": {
      +        "maxLength": 200,
      +        "type": "string"
      +      },
      +      "profile": {
      +        "const": "delta",
      +        "type": "string"
      +      },
      +      "project": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "ambiguous": {
      +            "type": "boolean"
      +          },
      +          "confidence": {
      +            "enum": [
      +              "high",
      +              "medium",
      +              "low",
      +              "none"
      +            ],
      +            "type": "string"
      +          },
      +          "frameworks": {
      +            "items": {
      +              "enum": [
      +                "vanilla",
      +                "react",
      +                "angular",
      +                "vue",
      +                "vite",
      +                "next"
      +              ],
      +              "type": "string"
      +            },
      +            "maxItems": 6,
      +            "type": "array"
      +          },
      +          "projectCapabilities": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "angular": {
      +                "type": "boolean"
      +              },
      +              "browserTarget": {
      +                "type": "boolean"
      +              },
      +              "next": {
      +                "type": "boolean"
      +              },
      +              "react": {
      +                "type": "boolean"
      +              },
      +              "serverRuntime": {
      +                "type": "boolean"
      +              },
      +              "vite": {
      +                "type": "boolean"
      +              },
      +              "vue": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "browserTarget",
      +              "react",
      +              "angular",
      +              "vue",
      +              "vite",
      +              "next",
      +              "serverRuntime"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "frameworks",
      +          "confidence",
      +          "ambiguous",
      +          "projectCapabilities"
      +        ],
      +        "type": "object"
      +      },
      +      "redaction": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "applied": {
      +            "const": true,
      +            "type": "boolean"
      +          },
      +          "policy": {
      +            "const": "default-sensitive-fields",
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "applied",
      +          "policy"
      +        ],
      +        "type": "object"
      +      },
      +      "schemaVersion": {
      +        "const": 5,
      +        "type": "number"
      +      },
      +      "session": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "id": {
      +            "format": "uuid",
      +            "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
      +            "type": "string"
      +          },
      +          "projectCapabilities": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "angular": {
      +                "type": "boolean"
      +              },
      +              "browserTarget": {
      +                "type": "boolean"
      +              },
      +              "next": {
      +                "type": "boolean"
      +              },
      +              "react": {
      +                "type": "boolean"
      +              },
      +              "serverRuntime": {
      +                "type": "boolean"
      +              },
      +              "vite": {
      +                "type": "boolean"
      +              },
      +              "vue": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "browserTarget",
      +              "react",
      +              "angular",
      +              "vue",
      +              "vite",
      +              "next",
      +              "serverRuntime"
      +            ],
      +            "type": "object"
      +          },
      +          "runtimeCapabilities": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "accessibility": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "actions": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "authSeeding": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "browser": {
      +                    "enum": [
      +                      "chromium",
      +                      "safari"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "console": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "dom": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "evaluation": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "javascriptDebugger": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "locators": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "css": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "provenance": {
      +                            "items": {
      +                              "enum": [
      +                                "playwright",
      +                                "chromium-cdp",
      +                                "safari-webdriver",
      +                                "safari-bidi",
      +                                "performance-resource-timing",
      +                                "session-policy",
      +                                "webmcp-page-api"
      +                              ],
      +                              "type": "string"
      +                            },
      +                            "maxItems": 2,
      +                            "type": "array"
      +                          },
      +                          "reason": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "state": {
      +                            "enum": [
      +                              "supported",
      +                              "degraded",
      +                              "unsupported"
      +                            ],
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "state",
      +                          "provenance"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      "semantic": {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "provenance": {
      +                            "items": {
      +                              "enum": [
      +                                "playwright",
      +                                "chromium-cdp",
      +                                "safari-webdriver",
      +                                "safari-bidi",
      +                                "performance-resource-timing",
      +                                "session-policy",
      +                                "webmcp-page-api"
      +                              ],
      +                              "type": "string"
      +                            },
      +                            "maxItems": 2,
      +                            "type": "array"
      +                          },
      +                          "reason": {
      +                            "maxLength": 500,
      +                            "type": "string"
      +                          },
      +                          "state": {
      +                            "enum": [
      +                              "supported",
      +                              "degraded",
      +                              "unsupported"
      +                            ],
      +                            "type": "string"
      +                          }
      +                        },
      +                        "required": [
      +                          "state",
      +                          "provenance"
      +                        ],
      +                        "type": "object"
      +                      }
      +                    },
      +                    "required": [
      +                      "css",
      +                      "semantic"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "network": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "pageRuntimeEnrichment": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "schemaVersion": {
      +                    "const": 2,
      +                    "type": "number"
      +                  },
      +                  "screenshots": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "tlsBypass": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "transport": {
      +                    "enum": [
      +                      "chromium-launch",
      +                      "chromium-cdp-attach",
      +                      "safari-webdriver"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "viewportMatrix": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  },
      +                  "webmcp": {
      +                    "additionalProperties": false,
      +                    "properties": {
      +                      "provenance": {
      +                        "items": {
      +                          "enum": [
      +                            "playwright",
      +                            "chromium-cdp",
      +                            "safari-webdriver",
      +                            "safari-bidi",
      +                            "performance-resource-timing",
      +                            "session-policy",
      +                            "webmcp-page-api"
      +                          ],
      +                          "type": "string"
      +                        },
      +                        "maxItems": 2,
      +                        "type": "array"
      +                      },
      +                      "reason": {
      +                        "maxLength": 500,
      +                        "type": "string"
      +                      },
      +                      "state": {
      +                        "enum": [
      +                          "supported",
      +                          "degraded",
      +                          "unsupported"
      +                        ],
      +                        "type": "string"
      +                      }
      +                    },
      +                    "required": [
      +                      "state",
      +                      "provenance"
      +                    ],
      +                    "type": "object"
      +                  }
      +                },
      +                "required": [
      +                  "schemaVersion",
      +                  "browser",
      +                  "transport",
      +                  "actions",
      +                  "locators",
      +                  "dom",
      +                  "console",
      +                  "network",
      +                  "screenshots",
      +                  "javascriptDebugger",
      +                  "evaluation",
      +                  "accessibility",
      +                  "pageRuntimeEnrichment",
      +                  "viewportMatrix",
      +                  "tlsBypass",
      +                  "authSeeding",
      +                  "webmcp"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "status": {
      +            "enum": [
      +              "starting",
      +              "ready",
      +              "paused",
      +              "failed",
      +              "closed"
      +            ],
      +            "type": "string"
      +          },
      +          "target": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "browser": {
      +                    "enum": [
      +                      "chromium",
      +                      "safari"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "isolated": {
      +                    "type": "boolean"
      +                  },
      +                  "mode": {
      +                    "enum": [
      +                      "launch",
      +                      "attach",
      +                      "webdriver"
      +                    ],
      +                    "type": "string"
      +                  },
      +                  "remote": {
      +                    "type": "boolean"
      +                  },
      +                  "schemaVersion": {
      +                    "const": 1,
      +                    "type": "number"
      +                  },
      +                  "viewport": {
      +                    "anyOf": [
      +                      {
      +                        "additionalProperties": false,
      +                        "properties": {
      +                          "height": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          },
      +                          "width": {
      +                            "maximum": 9007199254740991,
      +                            "minimum": -9007199254740991,
      +                            "type": "integer"
      +                          }
      +                        },
      +                        "required": [
      +                          "width",
      +                          "height"
      +                        ],
      +                        "type": "object"
      +                      },
      +                      {
      +                        "type": "null"
      +                      }
      +                    ]
      +                  }
      +                },
      +                "required": [
      +                  "schemaVersion",
      +                  "browser",
      +                  "remote",
      +                  "viewport",
      +                  "isolated"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "url": {
      +            "maxLength": 2560,
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "id",
      +          "url",
      +          "status",
      +          "target",
      +          "projectCapabilities",
      +          "runtimeCapabilities"
      +        ],
      +        "type": "object"
      +      },
      +      "summary": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "bodyText": {
      +            "maxLength": 1000,
      +            "type": "string"
      +          },
      +          "console": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "errors": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "latestErrors": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "column": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "level": {
      +                      "enum": [
      +                        "log",
      +                        "info",
      +                        "debug",
      +                        "warning",
      +                        "error",
      +                        "pageerror"
      +                      ],
      +                      "type": "string"
      +                    },
      +                    "line": {
      +                      "maximum": 9007199254740991,
      +                      "minimum": -9007199254740991,
      +                      "type": "integer"
      +                    },
      +                    "text": {
      +                      "maxLength": 2000,
      +                      "type": "string"
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "level",
      +                    "text"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 3,
      +                "type": "array"
      +              },
      +              "total": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "warnings": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "total",
      +              "errors",
      +              "warnings",
      +              "latestErrors"
      +            ],
      +            "type": "object"
      +          },
      +          "debugger": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "breakpoints": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "callFrames": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "paused": {
      +                "type": "boolean"
      +              },
      +              "reason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 500,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              }
      +            },
      +            "required": [
      +              "paused",
      +              "reason",
      +              "callFrames",
      +              "breakpoints"
      +            ],
      +            "type": "object"
      +          },
      +          "domElements": {
      +            "maximum": 9007199254740991,
      +            "minimum": 0,
      +            "type": "integer"
      +          },
      +          "network": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "failed": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "latestFailures": {
      +                "items": {
      +                  "additionalProperties": false,
      +                  "properties": {
      +                    "failure": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "method": {
      +                      "maxLength": 50,
      +                      "type": "string"
      +                    },
      +                    "nextActionId": {
      +                      "maxLength": 200,
      +                      "type": "string"
      +                    },
      +                    "ok": {
      +                      "anyOf": [
      +                        {
      +                          "type": "boolean"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "requestId": {
      +                      "maxLength": 500,
      +                      "type": "string"
      +                    },
      +                    "resourceType": {
      +                      "maxLength": 100,
      +                      "type": "string"
      +                    },
      +                    "status": {
      +                      "anyOf": [
      +                        {
      +                          "maximum": 9007199254740991,
      +                          "minimum": -9007199254740991,
      +                          "type": "integer"
      +                        },
      +                        {
      +                          "type": "null"
      +                        }
      +                      ]
      +                    },
      +                    "url": {
      +                      "maxLength": 2560,
      +                      "type": "string"
      +                    }
      +                  },
      +                  "required": [
      +                    "requestId",
      +                    "method",
      +                    "url",
      +                    "resourceType",
      +                    "status",
      +                    "ok"
      +                  ],
      +                  "type": "object"
      +                },
      +                "maxItems": 3,
      +                "type": "array"
      +              },
      +              "pending": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "total": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              }
      +            },
      +            "required": [
      +              "total",
      +              "failed",
      +              "pending",
      +              "latestFailures"
      +            ],
      +            "type": "object"
      +          },
      +          "observations": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "console": {
      +                    "$ref": "#/definitions/__schema2"
      +                  },
      +                  "dom": {
      +                    "$ref": "#/definitions/__schema1"
      +                  },
      +                  "url": {
      +                    "$ref": "#/definitions/__schema0"
      +                  }
      +                },
      +                "required": [
      +                  "url",
      +                  "dom",
      +                  "console"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "replay": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "frames": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "newestIndex": {
      +                "anyOf": [
      +                  {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "oldestIndex": {
      +                "anyOf": [
      +                  {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "restorable": {
      +                "type": "boolean"
      +              },
      +              "restoreBlockedReason": {
      +                "anyOf": [
      +                  {
      +                    "maxLength": 100,
      +                    "type": "string"
      +                  },
      +                  {
      +                    "type": "null"
      +                  }
      +                ]
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "frames",
      +              "truncated",
      +              "oldestIndex",
      +              "newestIndex",
      +              "restorable",
      +              "restoreBlockedReason"
      +            ],
      +            "type": "object"
      +          },
      +          "runtimes": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "accessibility": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "angular": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "next": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "react": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "vite": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              },
      +              "vue": {
      +                "enum": [
      +                  "present",
      +                  "not-detected",
      +                  "unavailable"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "react",
      +              "angular",
      +              "vue",
      +              "next",
      +              "vite",
      +              "accessibility"
      +            ],
      +            "type": "object"
      +          },
      +          "title": {
      +            "maxLength": 300,
      +            "type": "string"
      +          },
      +          "viewport": {
      +            "anyOf": [
      +              {
      +                "additionalProperties": false,
      +                "properties": {
      +                  "height": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  },
      +                  "width": {
      +                    "maximum": 9007199254740991,
      +                    "minimum": -9007199254740991,
      +                    "type": "integer"
      +                  }
      +                },
      +                "required": [
      +                  "width",
      +                  "height"
      +                ],
      +                "type": "object"
      +              },
      +              {
      +                "type": "null"
      +              }
      +            ]
      +          },
      +          "webmcp": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "callableTools": {
      +                "maximum": 9007199254740991,
      +                "minimum": 0,
      +                "type": "integer"
      +              },
      +              "state": {
      +                "enum": [
      +                  "supported",
      +                  "degraded",
      +                  "unsupported"
      +                ],
      +                "type": "string"
      +              },
      +              "truncated": {
      +                "type": "boolean"
      +              }
      +            },
      +            "required": [
      +              "state",
      +              "callableTools",
      +              "truncated"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "title",
      +          "viewport",
      +          "bodyText",
      +          "domElements",
      +          "console",
      +          "network",
      +          "debugger",
      +          "runtimes",
      +          "replay",
      +          "webmcp",
      +          "observations"
      +        ],
      +        "type": "object"
      +      },
      +      "truncation": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "applied": {
      +            "type": "boolean"
      +          },
      +          "omittedSurfaces": {
      +            "items": {
      +              "enum": [
      +                "dom",
      +                "console",
      +                "network",
      +                "debugger",
      +                "react",
      +                "angular",
      +                "vue",
      +                "next",
      +                "vite",
      +                "accessibility",
      +                "replay",
      +                "screenshot",
      +                "webmcp"
      +              ],
      +              "type": "string"
      +            },
      +            "maxItems": 13,
      +            "type": "array"
      +          }
      +        },
      +        "required": [
      +          "applied",
      +          "omittedSurfaces"
      +        ],
      +        "type": "object"
      +      },
      +      "unchangedSurfaces": {
      +        "items": {
      +          "enum": [
      +            "dom",
      +            "console",
      +            "network",
      +            "debugger",
      +            "react",
      +            "angular",
      +            "vue",
      +            "next",
      +            "vite",
      +            "accessibility",
      +            "replay",
      +            "screenshot",
      +            "webmcp"
      +          ],
      +          "type": "string"
      +        },
      +        "maxItems": 13,
      +        "type": "array"
      +      },
      +      "warnings": {
      +        "items": {
      +          "maxLength": 500,
      +          "type": "string"
      +        },
      +        "maxItems": 10,
      +        "type": "array"
      +      }
      +    },
      +    "required": [
      +      "schemaVersion",
      +      "capturedAt",
      +      "cursor",
      +      "session",
      +      "project",
      +      "summary",
      +      "redaction",
      +      "warnings",
      +      "truncation",
      +      "profile",
      +      "fromCursor",
      +      "changedSurfaces",
      +      "unchangedSurfaces",
      +      "details"
      +    ],
      +    "type": "object"
      +  }
      +]
    • changedOutput schema / properties / error / properties / details / allOf
      Previous value: -[
      -  {
      -    "$ref": "#/definitions/__schema1"
      -  }
      -]New value: +[
      +  {
      +    "$ref": "#/definitions/__schema13"
      +  }
      +]
  4. First observedv0.5.0-next.0

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds substantial behavior beyond the annotations: redaction, compact default output, opt-in screenshots with specific suppression conditions (private input, auth-seeded sessions, post-WebMCP attempts), and the untrusted status of WebMCP metadata. It complements readOnlyHint=false and openWorldHint=true without contradicting them, though the side-effect profile implied by those annotations is never disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler: the primary purpose and profile options are front-loaded in the first sentence, and the operational caveats are grouped in the second. Every clause adds usable information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Against a complex oneOf schema with four profiles and 14 surfaces, the description covers the decision-critical points: which profile to select and the suppression/trust caveats for the two riskiest surfaces. With an output schema present, return values need no prose. The remaining gaps are explicit differentiation from web_repro_record and disclosure of the side effects hinted at by readOnlyHint=false and openWorldHint=true.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the prose must carry parameter meaning, and it does map the view profiles to behavioral outcomes while clarifying the two notable surfaces (screenshot opt-in, webmcp trust) and the delta cursor concept. However, sessionId semantics and the other 12 surface enum values are left entirely to the schema, so compensation is only partial.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Capture redacted browser evidence,' a specific verb+resource pair that states exactly what the tool produces. It further qualifies the deliverable with the four delivery modes — summary, full, selected, and cursor-based surfaces — which differentiates it from siblings like web_repro_record at the purpose level.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides intra-tool guidance on choosing profiles ('by default' vs 'explicitly request') and on when screenshots are suppressed. However, it names no sibling tools or conditions for choosing this tool over the closely related web_repro_record, so the when-to-use-vs-alternatives guidance remains implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.