Klaviyo · Schema

PushOnOpenDeepLink

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
type string
ios_deep_link string required for all platforms enabled for push
android_deep_link string required for all platforms enabled for push
View JSON Schema on GitHub

JSON Schema

klaviyo-pushonopendeeplink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PushOnOpenDeepLink",
  "title": "PushOnOpenDeepLink",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "deep_link"
      ]
    },
    "ios_deep_link": {
      "description": "required for all platforms enabled for push",
      "type": "string",
      "nullable": true
    },
    "android_deep_link": {
      "description": "required for all platforms enabled for push",
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "type"
  ]
}