Files
jspg/validator/tests/Extra-Test-Suite/tests/draft2020-12/const.json
2025-09-30 01:10:58 -04:00

22 lines
482 B
JSON

[
{
"description": "zero fraction",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"const": 2
},
"tests": [
{
"description": "with fraction",
"data": 2.0,
"valid": true
},
{
"description": "without fraction",
"data": 2,
"valid": true
}
]
}
]