bootstrap-vz/bootstrapvz/providers/virtualbox/manifest-schema.yml

42 lines
752 B
YAML
Raw Normal View History

---
$schema: http://json-schema.org/draft-04/schema#
title: VirtualBox manifest
type: object
properties:
provider:
type: object
properties:
guest_additions:
$ref: '#/definitions/absolute_path'
system:
type: object
properties:
bootloader:
type: string
enum:
- grub
- extlinux
volume:
type: object
properties:
backing:
type: string
enum:
- raw
- vdi
- vmdk
partitions:
type: object
properties:
type:
type: string
enum:
- none
- msdos
- gpt
required: [backing]
definitions:
absolute_path:
type: string
pattern: ^/[^\0]+$