PostHog · Schema

CohortPersonsResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array
next string
previous string
View JSON Schema on GitHub

JSON Schema

posthog-cohortpersonsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CohortPersonsResponse",
  "title": "CohortPersonsResponse",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CohortPersonResult"
      }
    },
    "next": {
      "type": "string",
      "format": "uri",
      "nullable": true
    },
    "previous": {
      "type": "string",
      "format": "uri",
      "nullable": true
    }
  },
  "required": [
    "next",
    "previous",
    "results"
  ]
}