UNPKG

on-http-y1

Version:
71 lines (70 loc) 2.5 kB
{ "title": "panduit-obm-service", "definitions": { "ObmBase": { "description": "Panduit OBM settings", "type": "object", "additionalProperties": false, "properties": { "nodeId": { "type": "string" }, "service": { "type": "string" }, "config": { "type": "object", "properties": { "host": { "description": "Host address", "type": "string" }, "community": { "description": "Community", "type": "string" }, "cyclePassword": { "description": "Cycle password", "type": "string" }, "pduOutlets": { "type": "array", "properties": { "host": { "type": "string" }, "community": { "type": "string" }, "cyclePassword": { "type": "string" }, "pduNumber": { "type": "integer" }, "outletNumber": { "type": "integer" } }, "required": ["host", "community", "cyclePassword", "pduNumber", "outletNumber"] } }, "required": ["host", "community", "cyclePassword", "pduOutlets"] } } }, "ObmPatch": { "type": "object", "allOf": [ {"$ref": "#/definitions/ObmBase"} ] }, "Obm": { "type": "object", "allOf": [ {"$ref": "#/definitions/ObmBase"}, {"required": ["nodeId", "service", "config"]} ] } } }