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

apply updated schema

parent db711d6a
Branches
Tags
No related merge requests found
...@@ -66,9 +66,17 @@ def test_router_interfaces(router, client_with_mocked_data): ...@@ -66,9 +66,17 @@ def test_router_interfaces(router, client_with_mocked_data):
"type": "object", "type": "object",
"properties": { "properties": {
"name": {"type": "string"}, "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 "additionalProperties": False
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment