aboutsummaryrefslogtreecommitdiff
path: root/data/test.schema.json
diff options
context:
space:
mode:
Diffstat (limited to 'data/test.schema.json')
-rw-r--r--data/test.schema.json16
1 files changed, 11 insertions, 5 deletions
diff --git a/data/test.schema.json b/data/test.schema.json
index 43c1392..00c52ae 100644
--- a/data/test.schema.json
+++ b/data/test.schema.json
@@ -54,16 +54,19 @@
},
"matrix": {
"type": "object",
- "additionalProperties": {
- "properties": {
- "options": {
+ "properties": {
+ "options": {
+ "additionalProperties": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"val": {
- "type": "string"
+ "type": ["string", "boolean", "null", "array"],
+ "items": {
+ "type": "string"
+ }
},
"compilers": {
"type": "object",
@@ -88,7 +91,10 @@
"items": {
"type": "object",
"additionalProperties": {
- "type": "string"
+ "type": ["string", "boolean", "array"],
+ "items": {
+ "type": "string"
+ }
}
}
}