Klaviyo · Schema

Device

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
id string Not allowed on create.
type string
properties object
View JSON Schema on GitHub

JSON Schema

klaviyo-device-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Device",
  "title": "Device",
  "type": "object",
  "properties": {
    "id": {
      "description": "Not allowed on create.",
      "type": "string",
      "nullable": true
    },
    "type": {
      "type": "string",
      "enum": [
        "device"
      ]
    },
    "properties": {
      "$ref": "#/components/schemas/DeviceProperties"
    }
  },
  "required": [
    "type"
  ]
}