social.colibri.actor.listMutes
Schema Diff
+6 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.actor.listMutes",
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
+
],
6
12
"output": {
7
13
"schema": {
8
14
"type": "object",
9
15
"required": [
10
16
"mutes"
11
17
],
12
18
"properties": {
13
19
"mutes": {
14
20
"type": "array",
15
21
"items": {
16
22
"ref": "lex:social.colibri.actor.listMutes#mute",
17
23
"type": "ref"
18
24
}
19
25
}
20
26
}
21
27
},
22
28
"encoding": "application/json"
23
29
},
24
30
"description": "Lists the subjects the authenticated user has muted."
25
31
},
26
32
"mute": {
27
33
"type": "object",
28
34
"required": [
29
35
"uri",
30
36
"subject"
31
37
],
32
38
"properties": {
33
39
"uri": {
34
40
"type": "string",
35
41
"format": "at-uri",
36
42
"description": "AT-URI of the mute record."
37
43
},
38
44
"subject": {
39
45
"type": "string",
40
46
"description": "The muted subject (a DID)."
41
47
}
42
48
}
43
49
}
44
50
},
45
51
"$type": "com.atproto.lexicon.schema",
46
52
"lexicon": 1
47
53
}