Mixpanel · Schema

PropertySchema

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
type string Data type of the property
description string Description of the property
required boolean Whether the property is required
isHidden boolean Whether to hide this property in the UI
View JSON Schema on GitHub

JSON Schema

mixpanel-propertyschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PropertySchema",
  "title": "PropertySchema",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "string",
        "number",
        "boolean",
        "datetime",
        "list",
        "object"
      ],
      "description": "Data type of the property"
    },
    "description": {
      "type": "string",
      "description": "Description of the property"
    },
    "required": {
      "type": "boolean",
      "description": "Whether the property is required"
    },
    "isHidden": {
      "type": "boolean",
      "description": "Whether to hide this property in the UI"
    }
  }
}