PostHog · Schema

ExperimentVariantTrendsBaseStats

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
absolute_exposure number
count number
exposure number
key string
View JSON Schema on GitHub

JSON Schema

posthog-experimentvarianttrendsbasestats-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperimentVariantTrendsBaseStats",
  "title": "ExperimentVariantTrendsBaseStats",
  "additionalProperties": false,
  "properties": {
    "absolute_exposure": {
      "title": "Absolute Exposure",
      "type": "number"
    },
    "count": {
      "title": "Count",
      "type": "number"
    },
    "exposure": {
      "title": "Exposure",
      "type": "number"
    },
    "key": {
      "title": "Key",
      "type": "string"
    }
  },
  "required": [
    "absolute_exposure",
    "count",
    "exposure",
    "key"
  ],
  "type": "object"
}