We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4032b9 commit 232f079Copy full SHA for 232f079
tests/v1/additionalProperties.json
@@ -120,6 +120,23 @@
120
}
121
]
122
},
123
+ {
124
+ "description": "additionalProperties does not look in applicators",
125
+ "schema": {
126
+ "$schema": "https://json-schema.org/v1",
127
+ "allOf": [
128
+ {"properties": {"foo": {}}}
129
+ ],
130
+ "additionalProperties": {"type": "boolean"}
131
+ },
132
+ "tests": [
133
134
+ "description": "properties defined in allOf are not examined",
135
+ "data": {"foo": 1, "bar": true},
136
+ "valid": false
137
+ }
138
+ ]
139
140
{
141
"description": "additionalProperties with null valued instance properties",
142
"schema": {
0 commit comments