{ "$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" }