Mixpanel · Schema

FunnelResponse

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
meta object
View JSON Schema on GitHub

JSON Schema

mixpanel-funnelresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FunnelResponse",
  "title": "FunnelResponse",
  "type": "object",
  "properties": {
    "meta": {
      "type": "object",
      "properties": {
        "dates": {
          "type": "object",
          "additionalProperties": {
            "type": "object",
            "properties": {
              "steps": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/FunnelStep"
                }
              }
            }
          }
        }
      }
    }
  }
}