PostHog · Schema

FeatureFlagFilterPropertyGenericSchemaOperatorEnum

* `exact` - exact * `is_not` - is_not * `icontains` - icontains * `not_icontains` - not_icontains * `regex` - regex * `not_regex` - not_regex * `gt` - gt * `gte` - gte * `lt` - lt * `lte` - lte

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

JSON Schema

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