Klaviyo · Schema

ProfilePredictiveAnalyticsNumericCondition

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
dimension string Dimensions for numeric profile predictive analytics conditions.
filter object
View JSON Schema on GitHub

JSON Schema

klaviyo-profilepredictiveanalyticsnumericcondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProfilePredictiveAnalyticsNumericCondition",
  "title": "ProfilePredictiveAnalyticsNumericCondition",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "profile-predictive-analytics"
      ]
    },
    "dimension": {
      "description": "Dimensions for numeric profile predictive analytics conditions.",
      "type": "string",
      "enum": [
        "average_days_between_orders",
        "average_order_value",
        "churn_probability",
        "historic_clv",
        "historic_number_of_orders",
        "predicted_clv",
        "predicted_number_of_orders",
        "total_clv"
      ]
    },
    "filter": {
      "$ref": "#/components/schemas/NumericOperatorNumericFilter"
    }
  },
  "required": [
    "type",
    "dimension",
    "filter"
  ]
}