social.colibri.community.listChannels
Schema Diff
+6 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.community.listChannels",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
+
"errors": [
7
+
{
8
+
"name": "InvalidRequest",
9
+
"description": "A parameter or body field was missing or malformed."
10
+
}
11
+
],
6
12
"output": {
7
13
"schema": {
8
14
"type": "object",
9
15
"required": [
10
16
"channels"
11
17
],
12
18
"properties": {
13
19
"channels": {
14
20
"type": "array",
15
21
"items": {
16
22
"ref": "lex:social.colibri.community.defs#channelView",
17
23
"type": "ref"
18
24
}
19
25
}
20
26
}
21
27
},
22
28
"encoding": "application/json"
23
29
},
24
30
"parameters": {
25
31
"type": "params",
26
32
"required": [
27
33
"community"
28
34
],
29
35
"properties": {
30
36
"community": {
31
37
"type": "string",
32
38
"format": "at-uri"
33
39
}
34
40
}
35
41
},
36
42
"description": "Lists the channels of a community."
37
43
}
38
44
},
39
45
"$type": "com.atproto.lexicon.schema",
40
46
"lexicon": 1
41
47
}