This repository has no description
513 B
23 lines
1{
2 "lexicon": 1,
3 "id": "org.tangled.temp.notification.deleteNotification",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Delete a notification.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": ["id"],
13 "properties": {
14 "id": {
15 "type": "integer",
16 "description": "ID of the notification to delete."
17 }
18 }
19 }
20 }
21 }
22 }
23}