Klaviyo · Schema

StringArrayOperatorStringArrayFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

klaviyo-stringarrayoperatorstringarrayfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StringArrayOperatorStringArrayFilter",
  "title": "StringArrayOperatorStringArrayFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "string"
      ]
    },
    "operator": {
      "description": "Operators for string-in-array filters.",
      "type": "string",
      "enum": [
        "in",
        "not-in"
      ]
    },
    "value": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "type",
    "operator",
    "value"
  ]
}