{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NotificationChannel", "title": "NotificationChannel", "description": "Channel subscription details for an event.", "type": "object", "properties": { "type": { "$ref": "#/components/schemas/NotificationChannelType" }, "enabled": { "type": "boolean" } }, "required": [ "type", "enabled" ] }