Klaviyo · Schema

ProfilePredictiveAnalyticsChannelAffinityPriorityCondition

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
dimension string Possible dimension for channel affinity criterion.
measurement string
predicted_channel string Possible channels in a channel affinity definition.
filter object
View JSON Schema on GitHub

JSON Schema

klaviyo-profilepredictiveanalyticschannelaffinityprioritycondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfilePredictiveAnalyticsChannelAffinityPriorityCondition",
  "title": "ProfilePredictiveAnalyticsChannelAffinityPriorityCondition",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "profile-predictive-analytics"
      ]
    },
    "dimension": {
      "description": "Possible dimension for channel affinity criterion.",
      "type": "string",
      "enum": [
        "channel_affinity"
      ]
    },
    "measurement": {
      "type": "string",
      "enum": [
        "priority"
      ]
    },
    "predicted_channel": {
      "description": "Possible channels in a channel affinity definition.",
      "type": "string",
      "enum": [
        "email",
        "push",
        "sms"
      ]
    },
    "filter": {
      "$ref": "#/components/schemas/ProfilePredictiveAnalyticsChannelAffinityPriorityFilter"
    }
  },
  "required": [
    "type",
    "dimension",
    "measurement",
    "predicted_channel",
    "filter"
  ]
}