mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
Fix Schema to require a type in partition-table definition
This commit is contained in:
parent
876ea7bd85
commit
35f1e44087
1 changed files with 2 additions and 2 deletions
|
@ -153,7 +153,7 @@ definitions:
|
|||
properties:
|
||||
root: {$ref: '#/definitions/partition'}
|
||||
type: {enum: [none]}
|
||||
required: [root]
|
||||
required: [type, root]
|
||||
additionalProperties: false
|
||||
partition:
|
||||
type: object
|
||||
|
@ -178,7 +178,7 @@ definitions:
|
|||
size: {$ref: '#/definitions/bytes'}
|
||||
required: [size]
|
||||
type: {enum: [msdos, gpt]}
|
||||
required: [root]
|
||||
required: [type, root]
|
||||
additionalProperties: false
|
||||
path:
|
||||
type: string
|
||||
|
|
Loading…
Add table
Reference in a new issue