social.colibri.community.blockMessage
Schema Diff
+14 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.community.blockMessage",
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
"message"
11
25
],
12
26
"properties": {
13
27
"message": {
14
28
"type": "string",
15
29
"format": "at-uri"
16
30
}
17
31
}
18
32
},
19
33
"encoding": "application/json"
20
34
},
21
35
"parameters": {
22
36
"type": "params",
23
37
"required": [
24
38
"community",
25
39
"message"
26
40
],
27
41
"properties": {
28
42
"message": {
29
43
"type": "string",
30
44
"format": "at-uri"
31
45
},
32
46
"community": {
33
47
"type": "string",
34
48
"format": "at-uri"
35
49
}
36
50
}
37
51
},
38
52
"description": "Hides (moderates) a message within a community."
39
53
}
40
54
},
41
55
"$type": "com.atproto.lexicon.schema",
42
56
"lexicon": 1
43
57
}