diff --git a/README.md b/README.md index 4485cffe511ef3d727ea8c5695fcfe2f10d4cb3b..e3741088c598955a2f1caa69bbb08beecf4f2fd2 100644 --- a/README.md +++ b/README.md @@ -723,8 +723,17 @@ Any non-empty responses are JSON formatted messages. "items": {"$ref": "#/definitions/service-info"} } } + }, + "snmp-info": { + "type": "object", + "properties": { + "hostname": {"type": "string"}, + "oid": {"type": "string"}, + "community": {"type": "string"} + }, + "required": ["oid", "community", "hostname"], + "additionalProperties": False } - }, "type": "object", @@ -736,7 +745,11 @@ Any non-empty responses are JSON formatted messages. "type": "array", "items": {"$ref": "#/definitions/interface-lookup-info"} }, - "locations": {"$ref": "#/definitions/locations-list"} + "locations": {"$ref": "#/definitions/locations-list"}, + "snmp": { + "type": "array", + "items": {"$ref": "#/definitions/snmp-info"} + } }, "additionalProperties": False }