Amazon Pinpoint · Schema

InAppMessageBodyConfig

Text config for Message Body.

CampaignsCommunicationsEmailMarketingMessagingPush NotificationsSMSVoiceCustomer EngagementSegmentationJourneysAnalytics

Properties

Name Type Description
Alignment object
Body object
TextColor object
View JSON Schema on GitHub

JSON Schema

amazon-pinpoint-in-app-message-body-config-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-in-app-message-body-config-schema.json",
  "title": "InAppMessageBodyConfig",
  "description": "Text config for Message Body.",
  "type": "object",
  "properties": {
    "Alignment": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Alignment"
        },
        {
          "description": "The alignment of the text. Valid values: LEFT, CENTER, RIGHT."
        }
      ]
    },
    "Body": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "Message Body."
        }
      ]
    },
    "TextColor": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The text color."
        }
      ]
    }
  },
  "required": [
    "Alignment",
    "TextColor",
    "Body"
  ]
}