Klaviyo · Schema

MobilePushMessageStandardDefinition

MarketingEmailSMSCustomer DataEcommerceAutomation

Properties

Name Type Description
channel string
notification_type string The type of notification to send
content object Additional attributes relating to the content of the message
kv_pairs object The key-value pairs to be sent with the push notification
options object
View JSON Schema on GitHub

JSON Schema

klaviyo-mobilepushmessagestandarddefinition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MobilePushMessageStandardDefinition",
  "title": "MobilePushMessageStandardDefinition",
  "type": "object",
  "properties": {
    "channel": {
      "type": "string",
      "enum": [
        "mobile_push"
      ]
    },
    "notification_type": {
      "description": "The type of notification to send",
      "type": "string",
      "enum": [
        "standard"
      ]
    },
    "content": {
      "$ref": "#/components/schemas/MobilePushContent",
      "description": "Additional attributes relating to the content of the message"
    },
    "kv_pairs": {
      "description": "The key-value pairs to be sent with the push notification",
      "type": "object",
      "nullable": true
    },
    "options": {
      "$ref": "#/components/schemas/MobilePushOptions",
      "nullable": true
    }
  },
  "required": [
    "channel",
    "notification_type",
    "content"
  ]
}