PostHog · Schema

PromotedPropertiesResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
promoted_properties object Mapping from event name to the team-configured promoted property for that event. Names without a configured promoted property are omitted; callers should fall back to the core taxonomy defaults for th
View JSON Schema on GitHub

JSON Schema

posthog-promotedpropertiesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PromotedPropertiesResponse",
  "title": "PromotedPropertiesResponse",
  "type": "object",
  "properties": {
    "promoted_properties": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Mapping from event name to the team-configured promoted property for that event. Names without a configured promoted property are omitted; callers should fall back to the core taxonomy defaults for those."
    }
  },
  "required": [
    "promoted_properties"
  ]
}