{
  "$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."
    },
    "category": {
      "type": "string",
      "enum": [
        "placements",
        "destinations",
        "competitors",
        "index",
        "renewals"
      ],
      "description": "The category value; allowed values and bounds are specified in this schema."
    },
    "eventId": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Identifier of the event returned by its create or list operation."
    }
  },
  "required": [
    "projectId",
    "category",
    "eventId"
  ],
  "additionalProperties": false
}
