Auth0 · Schema

LogStreamMixpanelSink

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
mixpanelRegion object
mixpanelProjectId string Mixpanel Project Id
mixpanelServiceAccountUsername string Mixpanel Service Account Username
mixpanelServiceAccountPassword string Mixpanel Service Account Password
View JSON Schema on GitHub

JSON Schema

auth0-logstreammixpanelsink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogStreamMixpanelSink",
  "title": "LogStreamMixpanelSink",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "mixpanelRegion",
    "mixpanelProjectId",
    "mixpanelServiceAccountUsername",
    "mixpanelServiceAccountPassword"
  ],
  "properties": {
    "mixpanelRegion": {
      "$ref": "#/components/schemas/LogStreamMixpanelRegionEnum"
    },
    "mixpanelProjectId": {
      "type": "string",
      "description": "Mixpanel Project Id",
      "pattern": "^\\d+$"
    },
    "mixpanelServiceAccountUsername": {
      "type": "string",
      "description": "Mixpanel Service Account Username",
      "pattern": "^[^:]+$"
    },
    "mixpanelServiceAccountPassword": {
      "type": "string",
      "description": "Mixpanel Service Account Password",
      "pattern": "^[^:]+$"
    }
  }
}