Files
bug-em/node_modules/is-my-json-valid/test/json-schema-draft4/nullAndObject.json
Talor Berthelson 889faf9c1c lol
2016-06-17 20:49:15 -04:00

19 lines
316 B
JSON

[
{
"description": "multiple types of null and object containing properties",
"schema": {
"type": ["null", "object"],
"properties": {
"foo": {}
}
},
"tests": [
{
"description": "null is valid",
"data": null,
"valid": true
}
]
}
]