Skip to content
Snippets Groups Projects
Commit 7ae0f048 authored by Erik Reid's avatar Erik Reid
Browse files

apply updated schema

parent db711d6a
No related branches found
No related tags found
No related merge requests found
......@@ -66,9 +66,17 @@ def test_router_interfaces(router, client_with_mocked_data):
"type": "object",
"properties": {
"name": {"type": "string"},
"description": {"type": "string"}
"description": {"type": "string"},
"ipv4": {
"type": "array",
"items": {"type": "string"}
},
"ipv6": {
"type": "array",
"items": {"type": "string"}
}
},
"required": ["name", "description"],
"required": ["name", "description", "ipv4", "ipv6"],
"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