Snowflake · Schema

NotificationEmail

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
allowed_recipients array A comma-separated list of quoted email addresses that can receive notification emails from this integration.
default_recipients array A comma-separated list of default recipients for messages sent with this integration.
default_subject string the default subject line for messages sent with this integration.
View JSON Schema on GitHub

JSON Schema

notification-integration-notification-email-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NotificationEmail",
  "type": "object",
  "properties": {
    "allowed_recipients": {
      "type": "array",
      "description": "A comma-separated list of quoted email addresses that can receive notification emails from this integration."
    },
    "default_recipients": {
      "type": "array",
      "description": "A comma-separated list of default recipients for messages sent with this integration."
    },
    "default_subject": {
      "type": "string",
      "description": "the default subject line for messages sent with this integration."
    }
  }
}