app.didpic.notification.listNotifications
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.notification.listNotifications",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"notifications",
11
11
"serverTime"
12
12
],
13
13
"properties": {
14
14
"cursor": {
15
15
"type": "string"
16
16
},
17
17
"seenAt": {
18
18
"type": "string",
19
19
"format": "datetime"
20
20
},
21
21
"serverTime": {
22
22
"type": "string",
23
23
"format": "datetime"
24
24
},
25
25
"notifications": {
26
26
"type": "array",
27
27
"items": {
28
28
"ref": "app.didpic.notification.defs#notificationView",
29
29
"type": "ref"
30
30
}
31
31
}
32
32
}
33
33
},
34
34
"encoding": "application/json"
35
35
},
36
36
"parameters": {
37
37
"type": "params",
38
38
"properties": {
39
39
"limit": {
40
40
"type": "integer",
41
41
"default": 50,
42
42
"maximum": 100,
43
43
"minimum": 1
44
44
},
45
45
"cursor": {
46
46
"type": "string"
47
47
}
48
48
}
49
49
},
50
-
"description": "List the authenticated viewer's notifications, newest first. The response carries the viewer's stored seenAt boundary plus a server-side serverTime that clients should echo back to updateSeen — using server time as the read cutoff avoids trusting client clocks."
50
+
"description": "List the viewer's notifications."
51
51
}
52
52
},
53
53
"$type": "com.atproto.lexicon.schema",
54
54
"lexicon": 1
55
55
}