Klaviyo · Schema

ChannelProperties

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
channel string Channel type enumeration.
View JSON Schema on GitHub

JSON Schema

klaviyo-channelproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChannelProperties",
  "title": "ChannelProperties",
  "type": "object",
  "properties": {
    "channel": {
      "description": "Channel type enumeration.",
      "type": "string",
      "enum": [
        "email",
        "sms"
      ]
    }
  },
  "required": [
    "channel"
  ]
}