A group of filters combined with AND logic.
{ "type": "object", "description": "A group of filters combined with AND logic.", "properties": { "filters": { "type": "array", "example": [ { "propertyName": "Example Record", "operator": "EQ", "value": "example-value" } ], "items": { "type": "object", "description": "A single filter condition.", "properties": { "propertyName": { "type": "string", "description": "The name of the property to filter on.", "example": "Example Record" }, "operator": { "type": "string", "description": "The filter operator.", "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", "description": "The value to compare against.", "example": "example-value" } } } } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "FilterGroup" }