clean up command schema format

This commit is contained in:
Matthew Rich 2025-08-24 23:53:24 +00:00
parent baa8e51b3e
commit 9164150c06

View File

@ -6,23 +6,23 @@
"properties": {
"path": {
"type": "string",
"description": "command path",
"description": "command path",
"minLength": 1
},
"args": {
"type": "array",
"description": "list of command args",
"description": "list of command args",
"items": {
"type": "string"
}
},
"split": {
"type": "boolean",
"description": "split command line args by space"
"description": "split command line args by space"
},
"failonerror": {
"type": "boolean",
"description": "Generate an error if the command fails",
"description": "Generate an error if the command fails",
"items": {
"type": "string"
}