{
    "source": "../file.js",
    "method": "move",
    "input-schema": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
            "source": {
                "type": "string",
                "description": "Source path. Can be a directory or a file.",
                "format": "filechooser",
                "required": true
            },
            "destination": {
                "type": "string",
                "description": "Destination path. Can be a directory or a file.",
                "format": "filechooser",
                "required": true
            },
            "overwrite": {
                "type": "boolean",
                "format": "plain"
            }
        }
    },
    "output-schema": {
        "type": "object"
    },
    "meta": {
        "name": "move",
        "description": "Move a file or directory from the source to the given destination. "
    }
}