social.colibri.community.delete
Schema Diff
+12 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.community.delete",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"errors": [
7
7
{
8
+
"name": "AppViewNotAuthorized",
9
+
"description": "The acting account has not published this AppView as authorized to act for it."
10
+
},
11
+
{
8
12
"name": "AuthRequired",
9
13
"description": "Missing, malformed, or unverifiable service auth."
10
14
},
11
15
{
12
16
"name": "Forbidden",
13
17
"description": "The caller lacks the permission this method requires."
14
18
},
15
19
{
16
20
"name": "InvalidRequest",
17
21
"description": "A parameter or body field was missing or malformed."
18
22
},
19
23
{
24
+
"name": "NotCommunityHub",
25
+
"description": "This AppView does not administer the community; the hub field names the one that does."
26
+
},
27
+
{
20
28
"name": "NotFound",
21
29
"description": "The referenced record does not exist."
22
30
},
23
31
{
32
+
"name": "PdsUnavailable",
33
+
"description": "The PDS this operation needs is unreachable or is not a PDS."
34
+
},
35
+
{
24
36
"name": "UpstreamFailure",
25
37
"description": "A service outside this AppView failed."
26
38
}
27
39
],
28
40
"output": {
29
41
"schema": {
30
42
"type": "object",
31
43
"required": [
32
44
"did"
33
45
],
34
46
"properties": {
35
47
"did": {
36
48
"type": "string",
37
49
"format": "did"
38
50
}
39
51
}
40
52
},
41
53
"encoding": "application/json"
42
54
},
43
55
"parameters": {
44
56
"type": "params",
45
57
"required": [
46
58
"community"
47
59
],
48
60
"properties": {
49
61
"community": {
50
62
"type": "string",
51
63
"format": "at-uri"
52
64
}
53
65
}
54
66
},
55
67
"description": "Deletes a community."
56
68
}
57
69
},
58
70
"$type": "com.atproto.lexicon.schema",
59
71
"lexicon": 1
60
72
}