> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # Resource: Messages # Type: Message Object # Link: https://dev.wix.com/docs/api-reference/business-management/ai-site-chat/messages/message-object.md ## Schema: ```json Type: Message Object | type: Message - name: id | type: string | description: Message ID. - name: value | type: string | description: - name: createdDate | type: string | description: Date and time the message was created. - name: seconds | type: string | description: - name: nanos | type: number | description: - name: sender | type: string | description: Message sender type. enum: ASSISTANT, USER, SYSTEM, SITE_VISITOR - name: conversationId | type: string | description: Conversation ID. - name: answerTo | type: string | description: ID of the message that this message is answering. - name: messageType | type: string | description: Message type. enum: QUESTION, ANSWER, INTRO, LEGAL, CONTACT_FORM, CONTACT_FORM_SUBMITTED, SITE_OWNER_NOTIFICATION, OFFLINE, OUT_OF_QUOTA, USER_ANSWER, SITE_NAVIGATION, NAVIGATION_ANSWER, IGNORED_ANSWER, VISITOR_OPTION_SELECTED, ADD_TO_CART, BOOK_SERVICE, GENERATED_QUESTION, SUGGESTED_QUESTION, USER_QUESTION, USER_QUESTION_ANSWER, WIX_USER_MEDIA, MEDIA, WIX_USER_CARD, WIX_USER_MINIMAL_BODY, WIX_USER_FORM, WIX_SYSTEM - name: body | type: Body | description: Message body. - name: mainText | type: string | description: Main text of the message. - name: footerText | type: string | description: Footer text of the message. - name: additionalData | type: Array | description: Additional data for the message. - name: fields | type: object | description: - name: inboxId | type: string | description: Message Id in the Inbox - name: visitorOptions | type: Array | description: Options site visitor can choose from. - name: assistantActions | type: Array | description: List of actions that ai assistant executed on the site visitor's behalf. - name: visitorOptionsFields | type: Array | description: List of detailed options the visitor can choose from. - name: engineStatus | type: string | description: Exact status message returned by ai site chat engine, ```