{
  "type": "object",
  "required": [
    "event_type"
  ],
  "properties": {
    "event_type": {
      "type": "string",
      "description": "A custom webhook event name. Must be 100 characters or fewer.",
      "minLength": 1,
      "maxLength": 100
    },
    "client_payload": {
      "type": "object",
      "description": "JSON payload with extra information about the webhook event that your action or workflow may use. The maximum number of top-level properties is 10. The total size of the JSON payload must be less than 64KB.",
      "additionalProperties": true,
      "maxProperties": 10
    }
  },
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}