Klaviyo · Schema

ProfilePredictiveAnalyticsChannelAffinityRankFilter

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
operator object
value string Possible rank values in a channel affinity definition.
View JSON Schema on GitHub

JSON Schema

klaviyo-profilepredictiveanalyticschannelaffinityrankfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfilePredictiveAnalyticsChannelAffinityRankFilter",
  "title": "ProfilePredictiveAnalyticsChannelAffinityRankFilter",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "string"
      ]
    },
    "operator": {
      "oneOf": [
        {
          "enum": [
            "equals"
          ],
          "type": "string"
        },
        {
          "enum": [
            "not-equals"
          ],
          "type": "string"
        }
      ]
    },
    "value": {
      "description": "Possible rank values in a channel affinity definition.",
      "type": "string",
      "enum": [
        "high",
        "low",
        "medium"
      ]
    }
  },
  "required": [
    "type",
    "operator",
    "value"
  ]
}