{ "$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" }