Mixpanel · Schema

ServiceAccountWithSecret

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior
View JSON Schema on GitHub

JSON Schema

mixpanel-serviceaccountwithsecret-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceAccountWithSecret",
  "title": "ServiceAccountWithSecret",
  "allOf": [
    {
      "$ref": "#/components/schemas/ServiceAccount"
    },
    {
      "type": "object",
      "properties": {
        "secret": {
          "type": "string",
          "description": "Service account secret (only returned once at creation). Store this securely."
        }
      }
    }
  ]
}