Mixpanel · Schema

BigQueryConfig

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
projectId string Google Cloud project ID
dataset string BigQuery dataset name
serviceAccountKey string Base64-encoded service account JSON key
View JSON Schema on GitHub

JSON Schema

mixpanel-bigqueryconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BigQueryConfig",
  "title": "BigQueryConfig",
  "type": "object",
  "properties": {
    "projectId": {
      "type": "string",
      "description": "Google Cloud project ID"
    },
    "dataset": {
      "type": "string",
      "description": "BigQuery dataset name"
    },
    "serviceAccountKey": {
      "type": "string",
      "description": "Base64-encoded service account JSON key"
    }
  }
}