{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventSubscriptionResponse", "title": "EventSubscriptionResponse", "description": "Properties associated with an event subscription.", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/UUID" }, "entity_type": { "$ref": "#/components/schemas/EntityTypes" }, "created_at": { "$ref": "#/components/schemas/CreatedAt" }, "updated_at": { "$ref": "#/components/schemas/UpdatedAt" }, "regions": { "type": "array", "items": { "$ref": "#/components/schemas/NotificationRegion" } }, "entities": { "type": "array", "items": { "type": "string", "description": "ID of the entity. Use '*' to represent all entities of this type." } }, "channels": { "type": "array", "items": { "$ref": "#/components/schemas/NotificationChannel" } }, "enabled": { "description": "Enable/Disable complete subscription within an event.", "type": "boolean" }, "name": { "description": "User provided name of the subscription.", "type": "string" } }, "required": [ "id", "entity_type", "created_at", "updated_at", "regions", "entities", "channels", "enabled", "name" ] }