Mixpanel · Schema

GCSConfig

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
bucket string GCS bucket name
prefix string GCS path prefix
serviceAccountKey string Base64-encoded service account JSON key
View JSON Schema on GitHub

JSON Schema

mixpanel-gcsconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GCSConfig",
  "title": "GCSConfig",
  "type": "object",
  "properties": {
    "bucket": {
      "type": "string",
      "description": "GCS bucket name"
    },
    "prefix": {
      "type": "string",
      "description": "GCS path prefix"
    },
    "serviceAccountKey": {
      "type": "string",
      "description": "Base64-encoded service account JSON key"
    }
  }
}