atproto/lexicons/chat/bsky/convo/acceptConvo.json
rafael 22af31a898
Update chat lexicons (#3564)
* new chat lex

* changeset
2025-02-21 05:01:37 -08:00

32 lines
704 B
JSON

{
"lexicon": 1,
"id": "chat.bsky.convo.acceptConvo",
"defs": {
"main": {
"type": "procedure",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["convoId"],
"properties": {
"convoId": { "type": "string" }
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"properties": {
"rev": {
"description": "Rev when the convo was accepted. If not present, the convo was already accepted.",
"type": "string"
}
}
}
}
}
}
}