Files
jspg/tests/fixtures/old/prefixItems.json
2026-02-17 17:41:54 -05:00

22 lines
509 B
JSON

[
{
"description": "prefixItems with null instance elements",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"prefixItems": [
{
"type": "null"
}
]
},
"tests": [
{
"description": "allows null elements",
"data": [
null
],
"valid": true
}
]
}
]