bootstrap-vz/bootstrapvz/plugins/vagrant/manifest-schema.yml
Anders Ingemann 03a0746299 Convert every JSON file to YAML
Lines removed: over 500. Readiblity gained: A shitload
Now you can actually get an overview of a manifest on a single screen height.
I am sure that it will also save a lot of hassle when modifying schema in the future.
No more "expected property name" etc. because of an extraneous comma
Comments are of course natively support, so there's no need for this minify_json hokey pokey
2014-07-09 23:17:04 +02:00

24 lines
447 B
YAML

---
$schema: http://json-schema.org/draft-04/schema#
title: Vagrant plugin manifest
type: object
properties:
provider:
type: object
properties:
name:
type: string
enum: [virtualbox]
system:
required: [hostname]
volume:
type: object
properties:
backing:
type: string
enum: [vmdk]
required: [backing]
plugins:
type: object
properties:
vagrant: {type: object}