{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/luma/main/json-schema/v2_webhooks_update_post_request.json", "title": "V2 Webhooks Update Post Request", "type": "object", "properties": { "id": { "type": "string" }, "event_types": { "minItems": 1, "type": "array", "items": { "type": "string", "enum": [ "*", "calendar.event.added", "calendar.person.subscribed", "event.canceled", "event.created", "event.updated", "guest.registered", "guest.updated", "ticket.registered" ] } }, "status": { "type": "string", "enum": [ "active", "paused" ] } }, "required": [ "id" ] }