Klaviyo · Schema

ExistenceOperatorExistenceFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

klaviyo-existenceoperatorexistencefilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExistenceOperatorExistenceFilter",
  "title": "ExistenceOperatorExistenceFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "existence"
      ]
    },
    "operator": {
      "description": "Operators for existence filters.",
      "type": "string",
      "enum": [
        "is-set",
        "not-set"
      ]
    }
  },
  "required": [
    "type",
    "operator"
  ]
}