PostHog · Schema

BreakdownItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
label string
value object
View JSON Schema on GitHub

JSON Schema

posthog-breakdownitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BreakdownItem",
  "title": "BreakdownItem",
  "additionalProperties": false,
  "properties": {
    "label": {
      "title": "Label",
      "type": "string"
    },
    "value": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "integer"
        }
      ],
      "title": "Value"
    }
  },
  "required": [
    "label",
    "value"
  ],
  "type": "object"
}