Filter schema from HubSpot Engagement Tasks API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/engagement-tasks-api-filter-schema.json", "title": "Filter", "description": "Filter schema from HubSpot Engagement Tasks API", "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" } } }