Added output-folder to arguments_schema.json, and fixed additionalProperties value. Also, as output-format has a default value, its got deleted from required parameters.
This commit is contained in:
parent
0ff09ec7e0
commit
054e901497
|
@ -13,10 +13,13 @@
|
|||
"output-file": {
|
||||
"type": "string"
|
||||
},
|
||||
"output-folder": {
|
||||
"type": "string"
|
||||
},
|
||||
"number-of-simulations" : {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": ["output-format", "output-file", "number-of-simulations"],
|
||||
"aditionalProperties": false
|
||||
"required": ["output-file", "number-of-simulations"],
|
||||
"additionalProperties": false
|
||||
}
|
Loading…
Reference in New Issue