Mixpanel · Schema

Cohort

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
id integer Unique cohort identifier
name string Cohort name
description string Cohort description
count integer Number of users in the cohort
created string When the cohort was created
View JSON Schema on GitHub

JSON Schema

mixpanel-cohort-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Cohort",
  "title": "Cohort",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique cohort identifier"
    },
    "name": {
      "type": "string",
      "description": "Cohort name"
    },
    "description": {
      "type": "string",
      "description": "Cohort description"
    },
    "count": {
      "type": "integer",
      "description": "Number of users in the cohort"
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "When the cohort was created"
    }
  }
}