{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventSubscription", "title": "EventSubscription", "description": "A subscription to specific event types.", "properties": { "description": { "description": "A description of the subscription.", "type": "string" }, "disabled": { "description": "Whether the subscription is disabled.", "type": "boolean" }, "event_types": { "items": { "$ref": "#/components/schemas/event_type" }, "type": [ "null", "array" ] }, "token": { "description": "Globally unique identifier.", "example": "ep_1srOrx2ZWZBpBUvZwXKQmoEYga1", "type": "string" }, "url": { "format": "uri", "type": "string" } }, "required": [ "description", "disabled", "token", "url" ], "type": "object" }