Support for XApp configuration update (new retry)

Change-Id: I19292b6c85f3293f70a90a717b61f9b5c6f3f1db
Signed-off-by: Mohamed Abukar <abukar.mohamed@nokia.com>
diff --git a/test/schema.json b/test/schema.json
new file mode 100755
index 0000000..bc89da8
--- /dev/null
+++ b/test/schema.json
@@ -0,0 +1,46 @@
+{
+  "definitions": {},
+  "$schema": "http://json-schema.org/draft-07/schema#",
+  "$id": "http://example.com/root.json",
+  "type": "object",
+  "title": "The Root Schema",
+  "required": [
+    "local",
+    "logger"
+  ],
+  "properties": {
+    "local": {
+      "$id": "#/properties/local",
+      "type": "object",
+      "title": "The Local Schema",
+      "required": [
+        "host"
+      ],
+      "properties": {
+        "host": {
+          "$id": "#/properties/local/properties/host",
+          "type": "string",
+          "title": "The Host Schema",
+          "default": "",
+          "pattern": "^(.*)$"
+        }
+      }
+    },
+    "logger": {
+      "$id": "#/properties/logger",
+      "type": "object",
+      "title": "The Logger Schema",
+      "required": [
+        "level"
+      ],
+      "properties": {
+        "level": {
+          "$id": "#/properties/logger/properties/level",
+          "type": "integer",
+          "title": "The Level Schema",
+          "default": 0
+        }
+      }
+    }
+  }
+}
\ No newline at end of file