]> glassweightruler.freedombox.rocks Git - xdg-ninja.git/blob - json-schema/file.json
.cinnamon/spices.cache should be moved to XDG_CACHE_HOME (#198)
[xdg-ninja.git] / json-schema / file.json
1 {
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "title": "File schema",
4 "properties": {
5 "path": {
6 "type": "string",
7 "description": "Path to file (or folder).",
8 "minLength": 1
9 },
10 "movable": {
11 "type": "boolean",
12 "description": "Is file (or folder) movable to a place other than $HOME."
13 },
14 "help": {
15 "type": "string",
16 "description": "Help text for user. Supports markdown."
17 }
18 },
19 "required": [
20 "path",
21 "movable",
22 "help"
23 ]
24 }