Klaviyo · Schema

StringPhoneOperatorStringArrayFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
operator string Operators for phone string array filters. Example condition using this filter: {
value array
View JSON Schema on GitHub

JSON Schema

klaviyo-stringphoneoperatorstringarrayfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StringPhoneOperatorStringArrayFilter",
  "title": "StringPhoneOperatorStringArrayFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "string"
      ]
    },
    "operator": {
      "description": "Operators for phone string array filters.\n\nExample condition using this filter:\n        {",
      "type": "string",
      "enum": [
        "phone-country-code-in",
        "phone-country-code-not-in"
      ]
    },
    "value": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "type",
    "operator",
    "value"
  ]
}