atproto blogging
1{
2 "lexicon": 1,
3 "id": "chat.bsky.convo.deleteMessageForSelf",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "input": {
8 "encoding": "application/json",
9 "schema": {
10 "type": "object",
11 "required": [
12 "convoId",
13 "messageId"
14 ],
15 "properties": {
16 "convoId": {
17 "type": "string"
18 },
19 "messageId": {
20 "type": "string"
21 }
22 }
23 }
24 },
25 "output": {
26 "encoding": "application/json",
27 "schema": {
28 "type": "ref",
29 "ref": "chat.bsky.convo.defs#deletedMessageView"
30 }
31 }
32 }
33 }
34}