atproto blogging
1{
2 "lexicon": 1,
3 "id": "chat.bsky.convo.getConvoForMembers",
4 "defs": {
5 "main": {
6 "type": "query",
7 "parameters": {
8 "type": "params",
9 "required": [
10 "members"
11 ],
12 "properties": {
13 "members": {
14 "type": "array",
15 "items": {
16 "type": "string",
17 "format": "did"
18 },
19 "minLength": 1,
20 "maxLength": 10
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}