atproto blogging
1{
2 "lexicon": 1,
3 "id": "chat.bsky.convo.updateRead",
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 "messageId": {
19 "type": "string"
20 }
21 }
22 }
23 },
24 "output": {
25 "encoding": "application/json",
26 "schema": {
27 "type": "object",
28 "required": [
29 "convo"
30 ],
31 "properties": {
32 "convo": {
33 "type": "ref",
34 "ref": "chat.bsky.convo.defs#convoView"
35 }
36 }
37 }
38 }
39 }
40 }
41}