PostHog · Schema

Population

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
both number
exception_only number
neither number
success_only number
View JSON Schema on GitHub

JSON Schema

posthog-population-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Population",
  "title": "Population",
  "additionalProperties": false,
  "properties": {
    "both": {
      "title": "Both",
      "type": "number"
    },
    "exception_only": {
      "title": "Exception Only",
      "type": "number"
    },
    "neither": {
      "title": "Neither",
      "type": "number"
    },
    "success_only": {
      "title": "Success Only",
      "type": "number"
    }
  },
  "required": [
    "both",
    "exception_only",
    "neither",
    "success_only"
  ],
  "type": "object"
}