Klaviyo · Schema

StringInArrayFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
operator string
value array
type string
View JSON Schema on GitHub

JSON Schema

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