diff --git a/README.md b/README.md
index 655deb713dd260018965525775d3db14f4199618..4485cffe511ef3d727ea8c5695fcfe2f10d4cb3b 100644
--- a/README.md
+++ b/README.md
@@ -476,6 +476,15 @@ Any non-empty responses are JSON formatted messages.
                 "type": "string",
                 "pattern": r'^[a-f\d:]+/\d+$'
             },
+            "snmp-info": {
+                "type": "object",
+                "properties": {
+                    "community": {"type": "string"},
+                    "index": {"type": "integer"}
+                },
+                "required": ["community", "index"],
+                "additionalProperties": False
+            },
             "interface-info": {
                 "type": "object",
                 "properties": {
@@ -489,7 +498,9 @@ Any non-empty responses are JSON formatted messages.
                         "type": "array",
                         "items": {"$ref": "#/definitions/ipv6-interface-address"}
                     },
-                    'bundle': {"type": "array"}
+                    "bundle": {"type": "array"},
+                    "bundle_members": {"type": "array"},
+                    "snmp":  {"$ref": "#/definitions/snmp-info"}
                 },
                 "required": ["name", "description", "ipv4", "ipv6"],
                 "additionalProperties": False