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