UNPKG

on-http-y1

Version:
46 lines (45 loc) 1.3 kB
{ "title": "vbox-obm-service", "definitions": { "ObmBase": { "description": "Vbox OBM settings", "type": "object", "additionalProperties": false, "properties": { "nodeId": { "type": "string" }, "service": { "type": "string" }, "config": { "type": "object", "properties": { "alias": { "description": "Alias", "type": "string" }, "user": { "description": "Username", "type": "string" } }, "required": ["alias", "user"] } } }, "ObmPatch": { "type": "object", "allOf": [ {"$ref": "#/definitions/ObmBase"} ] }, "Obm": { "type": "object", "allOf": [ {"$ref": "#/definitions/ObmBase"}, {"required": ["nodeId", "service", "config"]} ] } } }