Skip to content
Snippets Groups Projects
Commit 6af17bcd authored by Robert Latta's avatar Robert Latta
Browse files

updated schema to cope with bundle information

parent 11c5e390
No related branches found
No related tags found
No related merge requests found
......@@ -34,11 +34,25 @@ def test_router_interfaces(router, client_with_mocked_data):
"type": "array",
"items": {"$ref": "#/definitions/circuit"}
},
"bundle": {
"type": "array",
"items": {"type": "string"}
},
"bundle-parents": {
"type": "array",
"items": {"type": "string"}
},
"description": {"type": "string"},
"name": {"type": "string"},
"snmp-index": {"type": "integer"}
},
"required": ["circuits", "description", "name", "snmp-index"],
"required": [
"circuits",
"bundle",
"bundle-parents",
"description",
"name",
"snmp-index"],
"additionalProperties": False
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment