diff options
Diffstat (limited to 'json/tests/draft2019-09/minProperties.json')
-rw-r--r-- | json/tests/draft2019-09/minProperties.json | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/json/tests/draft2019-09/minProperties.json b/json/tests/draft2019-09/minProperties.json index 9f74f78..20e01a9 100644 --- a/json/tests/draft2019-09/minProperties.json +++ b/json/tests/draft2019-09/minProperties.json @@ -1,7 +1,10 @@ [ { "description": "minProperties validation", - "schema": {"minProperties": 1}, + "schema": { + "$schema": "https://json-schema.org/draft/2019-09/schema", + "minProperties": 1 + }, "tests": [ { "description": "longer is valid", @@ -37,7 +40,10 @@ }, { "description": "minProperties validation with a decimal", - "schema": {"minProperties": 1.0}, + "schema": { + "$schema": "https://json-schema.org/draft/2019-09/schema", + "minProperties": 1.0 + }, "tests": [ { "description": "longer is valid", |