PostHog · Schema

Results

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
total_count number
values array
View JSON Schema on GitHub

JSON Schema

posthog-results-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Results",
  "title": "Results",
  "additionalProperties": false,
  "properties": {
    "total_count": {
      "title": "Total Count",
      "type": "number"
    },
    "values": {
      "items": {
        "$ref": "#/components/schemas/BreakdownValue"
      },
      "title": "Values",
      "type": "array"
    }
  },
  "required": [
    "total_count",
    "values"
  ],
  "type": "object"
}