PostHog · Schema

EventPropFilter

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
type object
key string
value object
operator string
View JSON Schema on GitHub

JSON Schema

posthog-eventpropfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventPropFilter",
  "title": "EventPropFilter",
  "additionalProperties": false,
  "properties": {
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventPropFilterTypeEnum"
        }
      ],
      "title": "Type"
    },
    "key": {
      "title": "Key",
      "type": "string"
    },
    "value": {
      "title": "Value"
    },
    "operator": {
      "default": null,
      "title": "Operator",
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "type",
    "key",
    "value"
  ],
  "type": "object"
}