social.colibri.channel.listUnreadStatus
Schema Diff
+14 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.channel.listUnreadStatus",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
+
"errors": [
7
+
{
8
+
"name": "AuthRequired",
9
+
"description": "Missing, malformed, or unverifiable service auth."
10
+
},
11
+
{
12
+
"name": "Forbidden",
13
+
"description": "The caller lacks the permission this method requires."
14
+
},
15
+
{
16
+
"name": "InvalidRequest",
17
+
"description": "A parameter or body field was missing or malformed."
18
+
}
19
+
],
6
20
"output": {
7
21
"schema": {
8
22
"type": "object",
9
23
"required": [
10
24
"channels"
11
25
],
12
26
"properties": {
13
27
"channels": {
14
28
"type": "array",
15
29
"items": {
16
30
"ref": "lex:social.colibri.channel.defs#unreadStatus",
17
31
"type": "ref"
18
32
}
19
33
}
20
34
}
21
35
},
22
36
"encoding": "application/json"
23
37
},
24
38
"parameters": {
25
39
"type": "params",
26
40
"required": [
27
41
"community"
28
42
],
29
43
"properties": {
30
44
"community": {
31
45
"type": "string",
32
46
"format": "at-uri"
33
47
}
34
48
}
35
49
},
36
50
"description": "Lists the unread status of every channel in a community for the authenticated user."
37
51
}
38
52
},
39
53
"$type": "com.atproto.lexicon.schema",
40
54
"lexicon": 1
41
55
}