PostHog · Schema

ExperimentExposureTimeSeries

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
days array
exposure_counts array
variant string
View JSON Schema on GitHub

JSON Schema

posthog-experimentexposuretimeseries-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperimentExposureTimeSeries",
  "title": "ExperimentExposureTimeSeries",
  "additionalProperties": false,
  "properties": {
    "days": {
      "items": {
        "type": "string"
      },
      "title": "Days",
      "type": "array"
    },
    "exposure_counts": {
      "items": {
        "type": "number"
      },
      "title": "Exposure Counts",
      "type": "array"
    },
    "variant": {
      "title": "Variant",
      "type": "string"
    }
  },
  "required": [
    "days",
    "exposure_counts",
    "variant"
  ],
  "type": "object"
}