PostHog · Schema

NumericPropertyFilterOperatorEnum

* `exact` - exact * `is_not` - is_not * `gt` - gt * `lt` - lt * `gte` - gte * `lte` - lte

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
View JSON Schema on GitHub

JSON Schema

posthog-numericpropertyfilteroperatorenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NumericPropertyFilterOperatorEnum",
  "title": "NumericPropertyFilterOperatorEnum",
  "enum": [
    "exact",
    "is_not",
    "gt",
    "lt",
    "gte",
    "lte"
  ],
  "type": "string",
  "description": "* `exact` - exact\n* `is_not` - is_not\n* `gt` - gt\n* `lt` - lt\n* `gte` - gte\n* `lte` - lte"
}