Files
bsky-social-app/lexicons/chat/bsky/convo/sendMessageBatch.json

68 lines
1.4 KiB
JSON

{
"lexicon": 1,
"id": "chat.bsky.convo.sendMessageBatch",
"defs": {
"main": {
"type": "procedure",
"description": "Sends a batch of messages to a conversation.",
"errors": [
{
"name": "ConvoLocked"
},
{
"name": "InvalidConvo"
},
{
"name": "ReplyTargetNotFound"
}
],
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["items"],
"properties": {
"items": {
"type": "array",
"maxLength": 100,
"items": {
"type": "ref",
"ref": "#batchItem"
}
}
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["items"],
"properties": {
"items": {
"type": "array",
"items": {
"type": "ref",
"ref": "chat.bsky.convo.defs#messageView"
}
}
}
}
}
},
"batchItem": {
"type": "object",
"required": ["convoId", "message"],
"properties": {
"convoId": {
"type": "string"
},
"message": {
"type": "ref",
"ref": "chat.bsky.convo.defs#messageInput"
}
}
}
}
}