{
  "$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."
    },
    "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
    }
  },
  "required": [
    "watchId"
  ],
  "additionalProperties": false
}
