social.colibri.notification.getUnseen
Schema Diff
+6 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.notification.getUnseen",
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
"notifications"
11
17
],
12
18
"properties": {
13
19
"notifications": {
14
20
"type": "array",
15
21
"items": {
16
22
"ref": "lex:social.colibri.notification.defs#unseenNotification",
17
23
"type": "ref"
18
24
}
19
25
}
20
26
}
21
27
},
22
28
"encoding": "application/json"
23
29
},
24
30
"parameters": {
25
31
"type": "params",
26
32
"required": [
27
33
"channel"
28
34
],
29
35
"properties": {
30
36
"channel": {
31
37
"type": "string",
32
38
"format": "at-uri"
33
39
}
34
40
}
35
41
},
36
42
"description": "Returns unseen notifications for a specific channel."
37
43
}
38
44
},
39
45
"$type": "com.atproto.lexicon.schema",
40
46
"lexicon": 1
41
47
}