2014-07-05 20:01:20 +02:00
|
|
|
---
|
|
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
|
|
title: Vagrant plugin manifest
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
provider:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
name:
|
|
|
|
type: string
|
2018-04-28 21:55:09 +03:00
|
|
|
enum: [virtualbox, kvm]
|
2014-07-05 20:01:20 +02:00
|
|
|
system:
|
|
|
|
required: [hostname]
|
|
|
|
volume:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
backing:
|
|
|
|
type: string
|
2018-04-28 21:55:09 +03:00
|
|
|
enum: [vmdk, qcow2]
|
2014-07-05 20:01:20 +02:00
|
|
|
required: [backing]
|
|
|
|
plugins:
|
|
|
|
type: object
|
|
|
|
properties:
|
2015-05-02 12:45:55 +02:00
|
|
|
vagrant:
|
|
|
|
type: object
|
2018-04-28 21:55:09 +03:00
|
|
|
properties:
|
|
|
|
provider:
|
|
|
|
type: string
|
|
|
|
enum: [virtualbox, libvirt]
|
2015-05-02 12:45:55 +02:00
|
|
|
additionalProperties: false
|