social.colibri.community.listApplications
Schema Diff
+14 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.community.listApplications",
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
"applications",
11
25
"dismissedApplications"
12
26
],
13
27
"properties": {
14
28
"applications": {
15
29
"type": "array",
16
30
"items": {
17
31
"ref": "lex:social.colibri.community.defs#applicationView",
18
32
"type": "ref"
19
33
}
20
34
},
21
35
"dismissedApplications": {
22
36
"type": "array",
23
37
"items": {
24
38
"ref": "lex:social.colibri.community.defs#applicationView",
25
39
"type": "ref"
26
40
}
27
41
}
28
42
}
29
43
},
30
44
"encoding": "application/json"
31
45
},
32
46
"parameters": {
33
47
"type": "params",
34
48
"required": [
35
49
"community"
36
50
],
37
51
"properties": {
38
52
"community": {
39
53
"type": "string",
40
54
"format": "at-uri"
41
55
}
42
56
}
43
57
},
44
58
"description": "Lists pending and dismissed membership applications for a community."
45
59
}
46
60
},
47
61
"$type": "com.atproto.lexicon.schema",
48
62
"lexicon": 1
49
63
}