{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RecipientCreateRequest", "title": "RecipientCreateRequest", "type": "object", "required": [ "type", "target" ], "properties": { "type": { "type": "string", "description": "The notification channel type.", "enum": [ "email", "pagerduty", "slack", "webhook", "msteams" ] }, "target": { "type": "string", "description": "The target address or identifier for the recipient." } } }