Snowflake · Schema

WebhookSecret

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
name string The name of the secret.
database_name string The database which stores the secret.
schema_name string The schema which stores the secret.
View JSON Schema on GitHub

JSON Schema

snowflake-webhooksecret-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebhookSecret",
  "title": "WebhookSecret",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "pattern": "^\"([^\"]|\"\")+\"|[a-zA-Z_][a-zA-Z0-9_$]*$",
      "description": "The name of the secret.",
      "example": "Example Title"
    },
    "database_name": {
      "type": "string",
      "pattern": "^\"([^\"]|\"\")+\"|[a-zA-Z_][a-zA-Z0-9_$]*$",
      "description": "The database which stores the secret.",
      "example": "example_value"
    },
    "schema_name": {
      "type": "string",
      "pattern": "^\"([^\"]|\"\")+\"|[a-zA-Z_][a-zA-Z0-9_$]*$",
      "description": "The schema which stores the secret.",
      "example": "example_value"
    }
  },
  "required": [
    "name",
    "database_name",
    "schema_name"
  ]
}