PostHog · Schema

ExperimentApiExposureCriteria

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

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

JSON Schema

posthog-experimentapiexposurecriteria-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperimentApiExposureCriteria",
  "title": "ExperimentApiExposureCriteria",
  "additionalProperties": false,
  "properties": {
    "exposure_config": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/ExperimentApiExposureConfig"
        }
      ],
      "nullable": true
    },
    "filterTestAccounts": {
      "default": null,
      "title": "Filtertestaccounts",
      "type": "boolean",
      "nullable": true
    }
  },
  "type": "object"
}