From ec2d064deeb20bc59961d34f4a5693a7bfc48ff9 Mon Sep 17 00:00:00 2001 From: Robert Latta <robert.latta@geant.org> Date: Thu, 24 Oct 2019 13:36:23 +0000 Subject: [PATCH] Added id to Coriant schema properties --- test/test_opsdb_queries.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test_opsdb_queries.py b/test/test_opsdb_queries.py index 69261691..2fc43bdd 100644 --- a/test/test_opsdb_queries.py +++ b/test/test_opsdb_queries.py @@ -121,6 +121,7 @@ CORIANT_PATH_METADATA = { "type": "object", "properties": { + 'id': {"type": "integer"}, 'category': {"type": "string"}, 'circuit_type': {"type": "string"}, 'service_type': {"type": "string"}, @@ -131,6 +132,7 @@ CORIANT_PATH_METADATA = { 'b': {"$ref": "#/definitions/endpoint"} }, "required": [ + "id", "category", "circuit_type", "service_type", -- GitLab