PostHog · Schema

EventTaxonomyItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
property string
sample_count integer
sample_values array
View JSON Schema on GitHub

JSON Schema

posthog-eventtaxonomyitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventTaxonomyItem",
  "title": "EventTaxonomyItem",
  "additionalProperties": false,
  "properties": {
    "property": {
      "title": "Property",
      "type": "string"
    },
    "sample_count": {
      "title": "Sample Count",
      "type": "integer"
    },
    "sample_values": {
      "items": {
        "type": "string"
      },
      "title": "Sample Values",
      "type": "array"
    }
  },
  "required": [
    "property",
    "sample_count",
    "sample_values"
  ],
  "type": "object"
}