social.colibri.actor.getNotificationPreference
Schema Diff
+6 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.actor.getNotificationPreference",
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
"level"
11
17
],
12
18
"properties": {
13
19
"level": {
14
20
"type": "string",
15
21
"knownValues": [
16
22
"all",
17
23
"mentionsAndReplies"
18
24
]
19
25
}
20
26
}
21
27
},
22
28
"encoding": "application/json"
23
29
},
24
30
"description": "Returns the authenticated user's notification level, defaulting to 'all' when they haven't set one."
25
31
}
26
32
},
27
33
"$type": "com.atproto.lexicon.schema",
28
34
"lexicon": 1
29
35
}