A single filter condition.
{ "type": "object", "description": "A single filter condition.", "properties": { "propertyName": { "type": "string", "example": "Example Record" }, "operator": { "type": "string", "example": "EQ", "enum": [ "EQ", "NEQ", "LT", "LTE", "GT", "GTE", "BETWEEN", "IN", "NOT_IN", "HAS_PROPERTY", "NOT_HAS_PROPERTY", "CONTAINS_TOKEN", "NOT_CONTAINS_TOKEN" ] }, "value": { "type": "string", "example": "example-value" } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Filter" }