ajv/spec/tests/issues/20_failing_to_parse_schema....

26 lines
476 B
JSON
Raw Normal View History

2015-07-22 16:58:48 +03:00
[
{
"skip": true,
"description": "Failing to parse schema with required property that is not an identifier (#20)",
"schema": {
"type": "object",
"required": [ "a-b", "'" ]
},
"tests": [
{
"description": "valid",
"data": {
"a-b": "test",
"'": "test"
},
"valid": true
},
{
"description": "invalid",
"data": {},
"valid": false
}
]
}
]