Klaviyo · Schema

AnniversaryDateFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

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

JSON Schema

klaviyo-anniversarydatefilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AnniversaryDateFilter",
  "title": "AnniversaryDateFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "date"
      ]
    },
    "operator": {
      "description": "Operators for anniversary date filters.",
      "type": "string",
      "enum": [
        "anniversary",
        "anniversary-month"
      ]
    }
  },
  "required": [
    "type",
    "operator"
  ]
}