From: Alberto Losada Date: Wed, 18 Dec 2024 11:51:38 +0000 (+0100) Subject: Fixes [INT-151] supportProfileList is not part of the attributes of the Deployment... X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=00a2338ceed2fca89b622726b1969ae4a7a4d425;p=it%2Ftest.git Fixes [INT-151] supportProfileList is not part of the attributes of the Deployment Manager Change-Id: Ie776c8e8d337ea156365f52fbad34c44aa885d2a Signed-off-by: Alberto Losada --- diff --git a/test_scripts/O2IMS_Compliance_Test/o2ims_compliance/schemas/deploymentManagers_properties.json b/test_scripts/O2IMS_Compliance_Test/o2ims_compliance/schemas/deploymentManagers_properties.json index 696341f..c153e62 100644 --- a/test_scripts/O2IMS_Compliance_Test/o2ims_compliance/schemas/deploymentManagers_properties.json +++ b/test_scripts/O2IMS_Compliance_Test/o2ims_compliance/schemas/deploymentManagers_properties.json @@ -24,12 +24,6 @@ "capacity": { "type": "string" }, - "profileSupportList": { - "type": "array", - "items": { - "type": "string" - } - }, "oCloudId": { "type": "string" }, @@ -37,17 +31,19 @@ "type": "string" }, "extensions": { - "type": "null", - "default": "" + "type": [ + "null", + "object" + ], + "default": null } }, "required": [ "deploymentManagerId", "description", "name", - "profileSupportList", "oCloudId", "serviceUri" ] } -} \ No newline at end of file +}