Airbyte · Schema

NotificationsConfig

Configures workspace notifications.

Data IntegrationETLELTOpen-SourceData PipelineConnectorsData

Properties

Name Type Description
failure object
success object
connectionUpdate object
connectionUpdateActionRequired object
syncDisabled object
syncDisabledWarning object
View JSON Schema on GitHub

JSON Schema

airbyte-notifications-config-schema.json Raw ↑
{
  "$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"
    }
  }
}