PostHog · Schema

ExperimentApiExposureConfig

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
event string Custom exposure event name.
kind string
properties array Event property filters. Pass an empty array if no filters needed.
View JSON Schema on GitHub

JSON Schema

posthog-experimentapiexposureconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExperimentApiExposureConfig",
  "title": "ExperimentApiExposureConfig",
  "additionalProperties": false,
  "properties": {
    "event": {
      "description": "Custom exposure event name.",
      "title": "Event",
      "type": "string"
    },
    "kind": {
      "default": "ExperimentEventExposureConfig",
      "title": "Kind",
      "type": "string",
      "enum": [
        "ExperimentEventExposureConfig"
      ]
    },
    "properties": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EventPropertyFilter"
      },
      "description": "Event property filters. Pass an empty array if no filters needed.",
      "title": "Properties"
    }
  },
  "required": [
    "event",
    "properties"
  ],
  "type": "object"
}