{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "subject": {
      "type": "string",
      "enum": [
        "link",
        "target"
      ],
      "description": "link for a monitored placement (source page → destination), target for a monitored destination URL."
    },
    "subjectId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "The watch id when subject is link, the target id when subject is target."
    },
    "cursor": {
      "description": "Opaque continuation returned by this same listing; omit for the first page.",
      "type": "string"
    },
    "limit": {
      "description": "Maximum rows in this page or bounded report; subject to the schema maximum.",
      "type": "integer",
      "minimum": 1,
      "maximum": 100,
      "default": 50
    },
    "format": {
      "description": "Response shape: concise keeps the fields needed to decide and to call next (the evidence state always included); detailed returns every field. MCP and code mode default to concise; REST and the CLI to detailed. The response names the default it applied in defaults_applied.",
      "type": "string",
      "enum": [
        "concise",
        "detailed"
      ]
    }
  },
  "required": [
    "subject",
    "subjectId"
  ],
  "additionalProperties": false
}
