ajv/spec/tests/rules/anyOf.json

24 lines
381 B
JSON

[
{
"description": "anyOf with one of schemas empty",
"schema": {
"anyOf": [
{ "type": "number" },
{}
]
},
"tests": [
{
"description": "string is valid",
"data": "foo",
"valid": true
},
{
"description": "number is valid",
"data": 123,
"valid": true
}
]
}
]