UNPKG

json-schema-test

Version:
27 lines (26 loc) 514 B
[ { "description": "extended format: multiple schemas", "schemas": [ { "type": "integer" }, { "type": "number", "multipleOf": 1 } ], "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 } ] } ]