PostHog · Schema

ExperimentExposureCriteria

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
exposure_config object
filterTestAccounts boolean
multiple_variant_handling object
View JSON Schema on GitHub

JSON Schema

posthog-experimentexposurecriteria-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperimentExposureCriteria",
  "title": "ExperimentExposureCriteria",
  "additionalProperties": false,
  "properties": {
    "exposure_config": {
      "default": null,
      "title": "Exposure Config",
      "anyOf": [
        {
          "$ref": "#/components/schemas/ExperimentEventExposureConfig"
        },
        {
          "$ref": "#/components/schemas/ActionsNode"
        }
      ],
      "nullable": true
    },
    "filterTestAccounts": {
      "default": null,
      "title": "Filtertestaccounts",
      "type": "boolean",
      "nullable": true
    },
    "multiple_variant_handling": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/MultipleVariantHandling"
        }
      ],
      "nullable": true
    }
  },
  "type": "object"
}