HubSpot · Schema
FilterGroup
A group of filters (AND logic within group)
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales
Properties
| Name | Type | Description |
|---|---|---|
| filters | array | The filters in this group |
JSON Schema
{
"type": "object",
"description": "A group of filters (AND logic within group)",
"properties": {
"filters": {
"type": "array",
"description": "The filters in this group",
"example": [
{
"propertyName": "hs_call_direction",
"operator": "EQ",
"value": "OUTBOUND",
"values": [
{}
],
"highValue": "example-value"
}
],
"items": {
"type": "object",
"description": "A single search filter",
"properties": {
"propertyName": {
"type": "string",
"description": "The property to filter on",
"example": "hs_call_direction"
},
"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 filter by",
"example": "OUTBOUND"
},
"values": {
"type": "array",
"description": "Values for IN/NOT_IN operators",
"example": [
"example-value"
],
"items": {
"type": "string"
}
},
"highValue": {
"type": "string",
"description": "High value for BETWEEN operator",
"example": "example-value"
}
},
"required": [
"propertyName",
"operator"
]
}
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "FilterGroup"
}