atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.notification.updateSeen",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Mark notifications as seen up to a given timestamp.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": ["seenAt"],
13 "properties": {
14 "seenAt": { "type": "string", "format": "datetime" }
15 }
16 }
17 },
18 "output": {
19 "encoding": "application/json",
20 "schema": {
21 "type": "object",
22 "properties": {}
23 }
24 }
25 }
26 }
27}