Mixpanel · Schema

ProjectMembership

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
projectId integer The project ID
projectName string The project name
role string Role assigned to the service account
View JSON Schema on GitHub

JSON Schema

mixpanel-projectmembership-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectMembership",
  "title": "ProjectMembership",
  "type": "object",
  "properties": {
    "projectId": {
      "type": "integer",
      "description": "The project ID"
    },
    "projectName": {
      "type": "string",
      "description": "The project name"
    },
    "role": {
      "type": "string",
      "enum": [
        "admin",
        "analyst",
        "consumer"
      ],
      "description": "Role assigned to the service account"
    }
  }
}