{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "notification-data", "type": "object", "description": "An object containing additional data depending on whether the notification channel is `email`, `sms`, or `other`.", "oneOf": [ { "$ref": "#/components/schemas/notification-email-data" }, { "$ref": "#/components/schemas/notification-sms-data" }, { "$ref": "#/components/schemas/notification-other-data" } ] }