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-notificationconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NotificationConfig",
  "title": "NotificationConfig",
  "description": "Configures a notification.",
  "type": "object",
  "properties": {
    "email": {
      "$ref": "#/components/schemas/EmailNotificationConfig"
    },
    "webhook": {
      "$ref": "#/components/schemas/WebhookNotificationConfig"
    }
  },
  "x-speakeasy-entity": "Workspace",
  "x-speakeasy-param-suppress-computed-diff": true,
  "x-speakeasy-component": true
}