Klaviyo · Schema

BooleanFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

klaviyo-booleanfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BooleanFilter",
  "title": "BooleanFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "boolean"
      ]
    },
    "operator": {
      "description": "Operators for boolean filters.",
      "type": "string",
      "enum": [
        "equals"
      ]
    },
    "value": {
      "type": "boolean"
    }
  },
  "required": [
    "type",
    "operator",
    "value"
  ]
}