{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 256,
      "description": "Identifier of the project returned by its create or list operation."
    },
    "enabled": {
      "type": "boolean",
      "description": "The enabled value; allowed values and bounds are specified in this schema."
    },
    "dailyLimit": {
      "description": "The daily limit value; allowed values and bounds are specified in this schema.",
      "type": "integer",
      "minimum": 1,
      "maximum": 2000
    },
    "retentionDays": {
      "description": "The retention days value; allowed values and bounds are specified in this schema.",
      "type": "integer",
      "minimum": 1,
      "maximum": 90
    },
    "cadenceSeconds": {
      "description": "Scheduled check interval in seconds, from 3600 to 2592000.",
      "type": "integer",
      "minimum": 3600,
      "maximum": 2592000
    }
  },
  "required": [
    "projectId",
    "enabled"
  ],
  "additionalProperties": false
}
