{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "VirtualBox manifest", "type": "object", "properties": { "bootstrapper": { "type": "object", "properties": { "guest_additions": { "type": "string" } } }, "volume": { "type": "object", "properties": { "backing": { "type": "string", "enum": ["raw", "vdi"] }, "partitions": { "type": "object", "properties": { "type": { "enum": ["none", "mbr"] } } } }, "required": ["backing"] } } }