Klaviyo · Schema

StringOperatorStringFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

klaviyo-stringoperatorstringfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StringOperatorStringFilter",
  "title": "StringOperatorStringFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "string"
      ]
    },
    "operator": {
      "description": "Operators for string filters.",
      "type": "string",
      "enum": [
        "contains",
        "ends-with",
        "equals",
        "not-contains",
        "not-ends-with",
        "not-equals",
        "not-starts-with",
        "nregex",
        "regex",
        "starts-with"
      ]
    },
    "value": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "type",
    "operator",
    "value"
  ]
}