atproto blogging
1{
2 "lexicon": 1,
3 "id": "tools.ozone.setting.removeOptions",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Delete settings by key",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "keys",
14 "scope"
15 ],
16 "properties": {
17 "keys": {
18 "type": "array",
19 "items": {
20 "type": "string",
21 "format": "nsid"
22 },
23 "minLength": 1,
24 "maxLength": 200
25 },
26 "scope": {
27 "type": "string",
28 "knownValues": [
29 "instance",
30 "personal"
31 ]
32 }
33 }
34 }
35 },
36 "output": {
37 "encoding": "application/json",
38 "schema": {
39 "type": "object",
40 "properties": {}
41 }
42 }
43 }
44 }
45}