Klaviyo · Schema

CartValueProperties

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
comparison string Number comparison enumeration.
value number
View JSON Schema on GitHub

JSON Schema

klaviyo-cartvalueproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CartValueProperties",
  "title": "CartValueProperties",
  "type": "object",
  "properties": {
    "comparison": {
      "description": "Number comparison enumeration.",
      "type": "string",
      "enum": [
        "equals",
        "greater_than",
        "less_than"
      ],
      "nullable": true
    },
    "value": {
      "type": "number",
      "nullable": true
    }
  }
}