UNPKG

on-http-y1

Version:
50 lines (49 loc) 1.49 kB
{ "title": "ipmi-obm-service", "definitions": { "ObmBase": { "description": "IPMI OBM settings", "type": "object", "additionalProperties": false, "properties": { "nodeId": { "type": "string" }, "service": { "type": "string" }, "config": { "type": "object", "properties": { "host": { "description": "BMC address", "type": "string" }, "user": { "description": "IPMI username", "type": "string" }, "password": { "description": "IPMI password", "type": "string" } }, "required": ["host", "user", "password"] } } }, "ObmPatch": { "type": "object", "allOf": [ {"$ref": "#/definitions/ObmBase"} ] }, "Obm": { "type": "object", "allOf": [ {"$ref": "#/definitions/ObmBase"}, {"required": ["nodeId", "service", "config"]} ] } } }