json-schema-test
Version:
Testing JSON schemas against sample data
26 lines (25 loc) • 471 B
JSON
[
{
"description": "same format as in JSON-Schema-Test-Suite",
"schema": {
"type": "integer"
},
"tests": [
{
"description": "integer is valid",
"data": 1,
"valid": true
},
{
"description": "non-integer number is invalid",
"data": 1.1,
"valid": false
},
{
"description": "non-number is invalid",
"data": "foo",
"valid": false
}
]
}
]