social.colibri.notification.updateSeen
Schema Diff
+6 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.notification.updateSeen",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
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
"updated"
11
17
],
12
18
"properties": {
13
19
"updated": {
14
20
"type": "integer"
15
21
}
16
22
}
17
23
},
18
24
"encoding": "application/json"
19
25
},
20
26
"parameters": {
21
27
"type": "params",
22
28
"properties": {
23
29
"seenAt": {
24
30
"type": "string",
25
31
"format": "datetime",
26
32
"description": "Defaults to now if omitted."
27
33
}
28
34
}
29
35
},
30
36
"description": "Marks all notifications up to a timestamp as seen."
31
37
}
32
38
},
33
39
"$type": "com.atproto.lexicon.schema",
34
40
"lexicon": 1
35
41
}