PostHog · Schema

ActorsPropertyTaxonomyResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

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

JSON Schema

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