# Text Use the `message` message type to display text in the body of a chatbot message. Place this message type under `head` content. This message type also supports [Markdown and @mentions](/docs/chat/customizing-messages/message-with-markdown). ## Example ![Example](/img/1560465698437.png) ## JSON example ```json { "head": { "text": "I am a header", "sub_head": { "text": "I am a sub header" } }, "body": [ { "type": "message", "text": "I am a message with text" } ] } ```