mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +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:
|
properties:
|
||||||
root: {$ref: '#/definitions/partition'}
|
root: {$ref: '#/definitions/partition'}
|
||||||
type: {enum: [none]}
|
type: {enum: [none]}
|
||||||
required: [root]
|
required: [type, root]
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
partition:
|
partition:
|
||||||
type: object
|
type: object
|
||||||
|
@ -178,7 +178,7 @@ definitions:
|
||||||
size: {$ref: '#/definitions/bytes'}
|
size: {$ref: '#/definitions/bytes'}
|
||||||
required: [size]
|
required: [size]
|
||||||
type: {enum: [msdos, gpt]}
|
type: {enum: [msdos, gpt]}
|
||||||
required: [root]
|
required: [type, root]
|
||||||
additionalProperties: false
|
additionalProperties: false
|
||||||
path:
|
path:
|
||||||
type: string
|
type: string
|
||||||
|
|
Loading…
Add table
Reference in a new issue