atproto blogging
at main 35 lines 661 B view raw
1{ 2 "lexicon": 1, 3 "id": "chat.bsky.convo.getConvo", 4 "defs": { 5 "main": { 6 "type": "query", 7 "parameters": { 8 "type": "params", 9 "required": [ 10 "convoId" 11 ], 12 "properties": { 13 "convoId": { 14 "type": "string" 15 } 16 } 17 }, 18 "output": { 19 "encoding": "application/json", 20 "schema": { 21 "type": "object", 22 "required": [ 23 "convo" 24 ], 25 "properties": { 26 "convo": { 27 "type": "ref", 28 "ref": "chat.bsky.convo.defs#convoView" 29 } 30 } 31 } 32 } 33 } 34 } 35}