chatBskyConvoSendMessage top-level constant
chat.bsky.convo.sendMessage
Implementation
const chatBskyConvoSendMessage = <String, dynamic>{
"lexicon": 1,
"id": "chat.bsky.convo.sendMessage",
"defs": {
"main": {
"type": "procedure",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["convoId", "message"],
"properties": {
"convoId": {"type": "string"},
"message": {
"type": "ref",
"ref": "chat.bsky.convo.defs#messageInput"
}
}
}
},
"output": {
"encoding": "application/json",
"schema": {"type": "ref", "ref": "chat.bsky.convo.defs#messageView"}
}
}
}
};