Klaviyo · Schema

DeviceProperties

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
device string Enumeration for mobile and desktop.
View JSON Schema on GitHub

JSON Schema

klaviyo-deviceproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeviceProperties",
  "title": "DeviceProperties",
  "type": "object",
  "properties": {
    "device": {
      "description": "Enumeration for mobile and desktop.",
      "type": "string",
      "example": "desktop",
      "default": "desktop",
      "enum": [
        "both",
        "desktop",
        "mobile"
      ]
    }
  }
}