PostHog · Schema

PatchedAddPersonsToStaticCohortRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
person_ids array List of person UUIDs to add to the cohort
View JSON Schema on GitHub

JSON Schema

posthog-patchedaddpersonstostaticcohortrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedAddPersonsToStaticCohortRequest",
  "title": "PatchedAddPersonsToStaticCohortRequest",
  "type": "object",
  "properties": {
    "person_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "description": "List of person UUIDs to add to the cohort"
    }
  }
}