json
{
    // config.json // type "file" example
    //...
    "label": "field file example",
    "defaultValues": {
    //...
    "inputFilePath": "Path to file!",
    //....
    },
    //...
    "fields": [
        //...
            {
                //...
                {
                    "type": "file",
                    "name": "inputFilePath",
                    //...
                },
                //...
            }
        //...
        ]
    //...
}js
// script.js
// ....
const myFilePathValue = command.inputFilePath;
// ....
RTILA