{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "sourceUrl": {
      "type": "string",
      "minLength": 1,
      "maxLength": 8192,
      "description": "Public publisher page URL containing the placement to inspect."
    },
    "targetUrl": {
      "type": "string",
      "minLength": 1,
      "maxLength": 8192,
      "description": "Public destination URL expected in the placement."
    },
    "scope": {
      "description": "URL matching rule: exact URL, domain, subdomain, or path prefix.",
      "type": "string",
      "enum": [
        "exact",
        "domain",
        "subdomain",
        "path"
      ],
      "default": "exact"
    }
  },
  "required": [
    "sourceUrl",
    "targetUrl"
  ],
  "additionalProperties": false
}
