feat(spec,uci): set 'options' as non required

This commit is contained in:
wpetit 2023-03-09 15:14:54 +01:00
parent d6aab44bee
commit b53842cbb7
1 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@
"options": { "options": {
"anyOf": [ "anyOf": [
{ {
"type": ["array"], "type": "array",
"items": { "items": {
"$ref": "#/$defs/option" "$ref": "#/$defs/option"
} }
@ -78,7 +78,7 @@
] ]
} }
}, },
"required": ["name", "options"], "required": ["name"],
"additionalProperties": false "additionalProperties": false
}, },
"option": { "option": {