Mixpanel · Schema

SnowflakeConfig

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
account string Snowflake account identifier
warehouse string Snowflake warehouse name
database string Snowflake database name
schema string Snowflake schema name
username string Snowflake username
password string Snowflake password
View JSON Schema on GitHub

JSON Schema

mixpanel-snowflakeconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SnowflakeConfig",
  "title": "SnowflakeConfig",
  "type": "object",
  "properties": {
    "account": {
      "type": "string",
      "description": "Snowflake account identifier"
    },
    "warehouse": {
      "type": "string",
      "description": "Snowflake warehouse name"
    },
    "database": {
      "type": "string",
      "description": "Snowflake database name"
    },
    "schema": {
      "type": "string",
      "description": "Snowflake schema name"
    },
    "username": {
      "type": "string",
      "description": "Snowflake username"
    },
    "password": {
      "type": "string",
      "description": "Snowflake password"
    }
  }
}