social.colibri.community.unbanUser
Schema Diff
+14 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.community.unbanUser",
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
"handle"
12
26
],
13
27
"properties": {
14
28
"did": {
15
29
"type": "string",
16
30
"format": "did"
17
31
},
18
32
"handle": {
19
33
"type": "string",
20
34
"format": "handle"
21
35
}
22
36
}
23
37
},
24
38
"encoding": "application/json"
25
39
},
26
40
"parameters": {
27
41
"type": "params",
28
42
"required": [
29
43
"community",
30
44
"identifier"
31
45
],
32
46
"properties": {
33
47
"community": {
34
48
"type": "string",
35
49
"format": "at-uri"
36
50
},
37
51
"identifier": {
38
52
"type": "string",
39
53
"description": "DID or handle of the user to unban."
40
54
}
41
55
}
42
56
},
43
57
"description": "Lifts a ban on a user."
44
58
}
45
59
},
46
60
"$type": "com.atproto.lexicon.schema",
47
61
"lexicon": 1
48
62
}