Configures workspace notifications.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-notifications-config-schema.json", "title": "NotificationsConfig", "description": "Configures workspace notifications.", "type": "object", "properties": { "failure": { "$ref": "#/components/schemas/NotificationConfig" }, "success": { "$ref": "#/components/schemas/NotificationConfig" }, "connectionUpdate": { "$ref": "#/components/schemas/NotificationConfig" }, "connectionUpdateActionRequired": { "$ref": "#/components/schemas/NotificationConfig" }, "syncDisabled": { "$ref": "#/components/schemas/NotificationConfig" }, "syncDisabledWarning": { "$ref": "#/components/schemas/NotificationConfig" } } }