social.colibri.notification.listNotifications
Schema Diff
+6 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.notification.listNotifications",
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
"cursor": {
14
20
"type": "string"
15
21
},
16
22
"notifications": {
17
23
"type": "array",
18
24
"items": {
19
25
"ref": "lex:social.colibri.notification.defs#notificationView",
20
26
"type": "ref"
21
27
}
22
28
}
23
29
}
24
30
},
25
31
"encoding": "application/json"
26
32
},
27
33
"parameters": {
28
34
"type": "params",
29
35
"properties": {
30
36
"limit": {
31
37
"type": "integer"
32
38
},
33
39
"cursor": {
34
40
"type": "string"
35
41
}
36
42
}
37
43
},
38
44
"description": "Lists the authenticated user's notifications, paginated."
39
45
}
40
46
},
41
47
"$type": "com.atproto.lexicon.schema",
42
48
"lexicon": 1
43
49
}