Airbyte · Schema

NotificationConfig

Configures a notification.

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
email object
webhook object
View JSON Schema on GitHub

JSON Schema

airbyte-notification-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-notification-config-schema.json",
  "title": "NotificationConfig",
  "description": "Configures a notification.",
  "type": "object",
  "properties": {
    "email": {
      "$ref": "#/components/schemas/EmailNotificationConfig"
    },
    "webhook": {
      "$ref": "#/components/schemas/WebhookNotificationConfig"
    }
  }
}