PostHog · Schema

BreakdownValue

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
count number
value string
View JSON Schema on GitHub

JSON Schema

posthog-breakdownvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BreakdownValue",
  "title": "BreakdownValue",
  "additionalProperties": false,
  "properties": {
    "count": {
      "title": "Count",
      "type": "number"
    },
    "value": {
      "title": "Value",
      "type": "string"
    }
  },
  "required": [
    "count",
    "value"
  ],
  "type": "object"
}