{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the project returned by its create or list operation."
    },
    "watchId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the watch returned by its create or list operation."
    },
    "observationId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "ID of a saved observation; this does not fetch a new publisher page."
    },
    "offset": {
      "description": "The offset value; allowed values and bounds are specified in this schema.",
      "type": "integer",
      "minimum": 0,
      "maximum": 999
    },
    "limit": {
      "description": "Maximum rows in this page or bounded report; subject to the schema maximum.",
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    }
  },
  "required": [
    "projectId",
    "watchId",
    "observationId"
  ],
  "additionalProperties": false
}
