{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "watchId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the watch returned by its create or list operation."
    },
    "status": {
      "description": "Lifecycle status filter or requested status; this is separate from observation state.",
      "type": "string",
      "enum": [
        "active",
        "paused"
      ]
    },
    "cadenceSeconds": {
      "description": "Scheduled check interval in seconds, from 3600 to 2592000.",
      "type": "integer",
      "minimum": 3600,
      "maximum": 2592000
    },
    "expectedAnchor": {
      "description": "Expected link anchor text; null clears the expectation.",
      "anyOf": [
        {
          "type": "string",
          "maxLength": 1000
        },
        {
          "type": "null"
        }
      ]
    },
    "expectedRel": {
      "description": "Expected rel tokens; null clears the expectation.",
      "anyOf": [
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "type": "null"
        }
      ]
    },
    "localReference": {
      "description": "Customer-owned reference to associate this record with a local ledger entry.",
      "type": "string",
      "maxLength": 200
    }
  },
  "required": [
    "watchId"
  ],
  "additionalProperties": false
}
