Skip to main content
Version: Next

ChatMessage

A context representing a chat message. Typically used to send the message or to pre-populate a message for sending.

Type

fdc3.chat.message

Schema

https://fdc3.finos.org/schemas/next/context/chatMessage.schema.json

Details

PropertyTypeRequiredExample Value
typestringYes'fdc3.chat.message'
chatRoomChatRoomYes{ type: 'fdc3.chat.room', providerName: 'Symphony', id:{ streamId: 'j75xqXy25NBOdacUI3FNBH'} }
messageMessageYes'A message to send'

Example

const chatMessage = {
type: "fdc3.chat.message",
chatRoom: {
type: 'fdc3.chat.room',
providerName: "Symphony",
id: {
streamId: "j75xqXy25NBOdacUI3FNBH"
}
},
message: {
type: 'fdc3.message',
text: {
'text/plain': 'Hey all, can we discuss the issue together? I attached a screenshot'
},
entities: {
'0': {
type: 'fdc3.fileAttachment',
data: {
name: 'myImage.png',
dataUri: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAIAQMAAAD+wSzIAAAABlBMVEX///+/v7+jQ3Y5AAAADklEQVQI12P4AIX8EAgALgAD/aNpbtEAAAAASUVORK5CYII'
}
}
}
}
}

See Also

Intents

FINOS Financial Objects