Klaviyo · Schema

IntegerFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
operator string Operators for numeric filters.
value integer
View JSON Schema on GitHub

JSON Schema

klaviyo-integerfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegerFilter",
  "title": "IntegerFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "numeric"
      ]
    },
    "operator": {
      "description": "Operators for numeric filters.",
      "type": "string",
      "enum": [
        "equals",
        "greater-than",
        "greater-than-or-equal",
        "less-than",
        "less-than-or-equal",
        "not-equals"
      ]
    },
    "value": {
      "type": "integer"
    }
  },
  "required": [
    "type",
    "operator",
    "value"
  ]
}