atproto/lexicons/chat/bsky/convo/sendMessageBatch.json
devin ivy 06d2328eeb
Lexicon: misc fixes to chat lexicons (#2499)
* lexicon: misc chat-related tweaks/fixes

* ozone: track convo ids on chat message reports

* add changeset

* fix tests

---------

Co-authored-by: dholms <dtholmgren@gmail.com>
2024-05-20 10:13:12 -04:00

54 lines
1.2 KiB
JSON

{
"lexicon": 1,
"id": "chat.bsky.convo.sendMessageBatch",
"defs": {
"main": {
"type": "procedure",
"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"
}
}
}
}
}