social.colibri.community.approveMembership
Schema Diff
+14 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.community.approveMembership",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
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
"did",
11
25
"community"
12
26
],
13
27
"properties": {
14
28
"did": {
15
29
"type": "string",
16
30
"format": "did"
17
31
},
18
32
"member": {
19
33
"type": "string",
20
34
"format": "at-uri"
21
35
},
22
36
"community": {
23
37
"type": "string",
24
38
"format": "at-uri"
25
39
}
26
40
}
27
41
},
28
42
"encoding": "application/json"
29
43
},
30
44
"parameters": {
31
45
"type": "params",
32
46
"required": [
33
47
"membership"
34
48
],
35
49
"properties": {
36
50
"membership": {
37
51
"type": "string",
38
52
"format": "at-uri"
39
53
}
40
54
}
41
55
},
42
56
"description": "Approves a pending membership application, minting the member record."
43
57
}
44
58
},
45
59
"$type": "com.atproto.lexicon.schema",
46
60
"lexicon": 1
47
61
}