atproto blogging
1{
2 "lexicon": 1,
3 "id": "chat.bsky.convo.listConvos",
4 "defs": {
5 "main": {
6 "type": "query",
7 "parameters": {
8 "type": "params",
9 "properties": {
10 "cursor": {
11 "type": "string"
12 },
13 "limit": {
14 "type": "integer",
15 "default": 50,
16 "minimum": 1,
17 "maximum": 100
18 },
19 "readState": {
20 "type": "string",
21 "knownValues": [
22 "unread"
23 ]
24 },
25 "status": {
26 "type": "string",
27 "knownValues": [
28 "request",
29 "accepted"
30 ]
31 }
32 }
33 },
34 "output": {
35 "encoding": "application/json",
36 "schema": {
37 "type": "object",
38 "required": [
39 "convos"
40 ],
41 "properties": {
42 "convos": {
43 "type": "array",
44 "items": {
45 "type": "ref",
46 "ref": "chat.bsky.convo.defs#convoView"
47 }
48 },
49 "cursor": {
50 "type": "string"
51 }
52 }
53 }
54 }
55 }
56 }
57}