mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
manifest-schema: Relax requirements for plugins
This lets plugins define arbitrary datatypes for their configuration, not only objects. Also, `additionalProperties` was not specified, so entries with arbitrary names could be added. This isn't the case anymore.
This commit is contained in:
parent
e1d296d5dc
commit
7c5e5d111d
1 changed files with 2 additions and 1 deletions
|
@ -121,7 +121,8 @@ properties:
|
|||
plugins:
|
||||
type: object
|
||||
patternProperties:
|
||||
^\w+$: {type: object}
|
||||
^\w+$: {}
|
||||
additionalProperties: false
|
||||
volume:
|
||||
type: object
|
||||
properties:
|
||||
|
|
Loading…
Add table
Reference in a new issue