{ "$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-schema.json", "title": "InAppMessage", "description": "Provides all fields required for building an in-app message.", "type": "object", "properties": { "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 SDK." } ] }, "Layout": { "allOf": [ { "$ref": "#/components/schemas/Layout" }, { "description": "The layout of the message." } ] } } }