PostHog · Schema

ExperimentExposureQueryResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
bias_risk object
date_range object
kind string
sample_ratio_mismatch object
timeseries array
total_exposures object
View JSON Schema on GitHub

JSON Schema

posthog-experimentexposurequeryresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperimentExposureQueryResponse",
  "title": "ExperimentExposureQueryResponse",
  "additionalProperties": false,
  "properties": {
    "bias_risk": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/BiasRisk"
        }
      ],
      "nullable": true
    },
    "date_range": {
      "$ref": "#/components/schemas/DateRange"
    },
    "kind": {
      "default": "ExperimentExposureQuery",
      "title": "Kind",
      "type": "string",
      "enum": [
        "ExperimentExposureQuery"
      ]
    },
    "sample_ratio_mismatch": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/SampleRatioMismatch"
        }
      ],
      "nullable": true
    },
    "timeseries": {
      "items": {
        "$ref": "#/components/schemas/ExperimentExposureTimeSeries"
      },
      "title": "Timeseries",
      "type": "array"
    },
    "total_exposures": {
      "additionalProperties": {
        "type": "number"
      },
      "title": "Total Exposures",
      "type": "object"
    }
  },
  "required": [
    "date_range",
    "timeseries",
    "total_exposures"
  ],
  "type": "object"
}