This repository has no description
605 B
26 lines
1{
2 "lexicon": 1,
3 "id": "org.tangled.temp.notification.updateSeen",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Mark a single notification as read or unread.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": ["id", "read"],
13 "properties": {
14 "id": {
15 "type": "integer",
16 "description": "ID of the notification to update."
17 },
18 "read": {
19 "type": "boolean"
20 }
21 }
22 }
23 }
24 }
25 }
26}