aboutsummaryrefslogtreecommitdiffstats
path: root/pnf-sim-lightweight/src/test/resources/valid-test-schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'pnf-sim-lightweight/src/test/resources/valid-test-schema.json')
-rw-r--r--pnf-sim-lightweight/src/test/resources/valid-test-schema.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/pnf-sim-lightweight/src/test/resources/valid-test-schema.json b/pnf-sim-lightweight/src/test/resources/valid-test-schema.json
new file mode 100644
index 0000000..26e48a5
--- /dev/null
+++ b/pnf-sim-lightweight/src/test/resources/valid-test-schema.json
@@ -0,0 +1,19 @@
+{
+ "type": "object",
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "properties": {
+ "key1": {
+ "type": "string"
+ },
+ "key2": {
+ "type": "string"
+ },
+ "key3": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "key1",
+ "key2"
+ ]
+}