UNPKG

on-http-y1

Version:
46 lines (45 loc) 1.31 kB
{ "title": "snmp-obm-service", "definitions": { "ObmBase": { "description": "OBM settings", "type": "object", "additionalProperties": false, "properties": { "nodeId": { "type": "string" }, "service": { "type": "string" }, "config": { "type": "object", "properties": { "required": ["host", "community" ], "host": { "description": "The IP address", "type": "string" }, "community": { "description": "community", "type": "string" } } } } }, "ObmPatch": { "type": "object", "allOf": [ {"$ref": "#/definitions/ObmBase"} ] }, "Obm": { "type": "object", "allOf": [ {"$ref": "#/definitions/ObmBase"}, {"required": ["nodeId", "service", "config"]} ] } } }