json
{
// config.json // type "checkbox" example
//...
"label": "field Checkbox example",
"defaultValues": {
//...
"inputCheckbox": true,
//....
},
"fields":
[
//...
{
//...
{
"type": "checkbox",
"name": "inputCheckbox",
//...
}
//...
},
//...
]
}
js
// script.js
// ....
const myCheckboxValue = command.inputCheckbox;
// ....