{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-structure/amazon-pinpoint-in-app-message-body-config-structure.json", "name": "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" ] }