PostHog · Schema

TeamTaxonomyItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
count integer
event string
View JSON Schema on GitHub

JSON Schema

posthog-teamtaxonomyitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TeamTaxonomyItem",
  "title": "TeamTaxonomyItem",
  "additionalProperties": false,
  "properties": {
    "count": {
      "title": "Count",
      "type": "integer"
    },
    "event": {
      "title": "Event",
      "type": "string"
    }
  },
  "required": [
    "count",
    "event"
  ],
  "type": "object"
}