{
  "$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."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Public HTTPS endpoint or destination URL required by this operation."
    },
    "cadenceSeconds": {
      "description": "Scheduled check interval in seconds, from 3600 to 2592000.",
      "type": "integer",
      "minimum": 3600,
      "maximum": 2592000,
      "default": 86400
    }
  },
  "required": [
    "projectId",
    "url"
  ],
  "additionalProperties": false
}
