summaryrefslogtreecommitdiff
path: root/src/test/resources/schema/ref-ref.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/resources/schema/ref-ref.json')
-rw-r--r--src/test/resources/schema/ref-ref.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/resources/schema/ref-ref.json b/src/test/resources/schema/ref-ref.json
new file mode 100644
index 0000000..3b43a5d
--- /dev/null
+++ b/src/test/resources/schema/ref-ref.json
@@ -0,0 +1,24 @@
+{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "type": "object",
+ "additionalProperties": false,
+ "definitions": {
+ "DriverProperties": {
+ "type": "object",
+ "properties": {
+ "field1": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 512
+ },
+ "field2": {
+ "type": "string",
+ "minLength": 1,
+ "maxLength": 512
+ }
+ },
+ "required": ["field1"],
+ "additionalProperties": false
+ }
+ }
+} \ No newline at end of file