Amazon Pinpoint · Schema

CampaignInAppMessage

In-app message configuration.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Body object
Content object
CustomConfig object
Layout object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-campaign-in-app-message-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-schema/amazon-pinpoint-campaign-in-app-message-schema.json",
  "title": "CampaignInAppMessage",
  "description": "In-app message configuration.",
  "type": "object",
  "properties": {
    "Body": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The message body of the notification, the email body or the text message."
        }
      ]
    },
    "Content": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListOfInAppMessageContent"
        },
        {
          "description": "In-app message content."
        }
      ]
    },
    "CustomConfig": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MapOf__string"
        },
        {
          "description": "Custom config to be sent to client."
        }
      ]
    },
    "Layout": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Layout"
        },
        {
          "description": "In-app message layout."
        }
      ]
    }
  }
}