PostHog · Schema

StringMatchOperatorEnum

* `exact` - exact * `is_not` - is_not * `icontains` - icontains * `not_icontains` - not_icontains * `regex` - regex * `not_regex` - not_regex

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

JSON Schema

posthog-stringmatchoperatorenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StringMatchOperatorEnum",
  "title": "StringMatchOperatorEnum",
  "enum": [
    "exact",
    "is_not",
    "icontains",
    "not_icontains",
    "regex",
    "not_regex"
  ],
  "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"
}