atproto blogging
1{
2 "lexicon": 1,
3 "id": "chat.bsky.convo.acceptConvo",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "input": {
8 "encoding": "application/json",
9 "schema": {
10 "type": "object",
11 "required": [
12 "convoId"
13 ],
14 "properties": {
15 "convoId": {
16 "type": "string"
17 }
18 }
19 }
20 },
21 "output": {
22 "encoding": "application/json",
23 "schema": {
24 "type": "object",
25 "properties": {
26 "rev": {
27 "type": "string",
28 "description": "Rev when the convo was accepted. If not present, the convo was already accepted."
29 }
30 }
31 }
32 }
33 }
34 }
35}