{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "File schema",
    "properties": {
        "path": {
            "type": "string",
            "description": "Path to file (or folder).",
            "minLength": 1
        },
        "movable": {
            "type": "boolean",
            "description": "Is file (or folder) movable to a place other than $HOME."
        },
        "help": {
            "type": "string",
            "description": "Help text for user. Supports markdown."
        }
    },
    "required": [
        "path",
        "movable",
        "help"
    ]
}