PostHog · Schema

PropertyGroupFilter

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
type object
values array
View JSON Schema on GitHub

JSON Schema

posthog-propertygroupfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PropertyGroupFilter",
  "title": "PropertyGroupFilter",
  "additionalProperties": false,
  "properties": {
    "type": {
      "$ref": "#/components/schemas/FilterLogicalOperator"
    },
    "values": {
      "items": {
        "$ref": "#/components/schemas/PropertyGroupFilterValue"
      },
      "title": "Values",
      "type": "array"
    }
  },
  "required": [
    "type",
    "values"
  ],
  "type": "object"
}