HubSpot · Schema

FilterGroup

A group of filters combined with AND logic.

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
filters array
View JSON Schema on GitHub

JSON Schema

hubspot-crm-deals-filter-group-schema.json Raw ↑
{
  "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",
            "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": "FilterGroup"
}