PostHog · Schema

PropertyValueItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
count integer
name object
View JSON Schema on GitHub

JSON Schema

posthog-propertyvalueitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PropertyValueItem",
  "title": "PropertyValueItem",
  "additionalProperties": false,
  "properties": {
    "count": {
      "default": null,
      "title": "Count",
      "type": "integer",
      "nullable": true
    },
    "name": {
      "default": null,
      "title": "Name",
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "number"
        },
        {
          "type": "boolean"
        }
      ],
      "nullable": true
    }
  },
  "type": "object"
}