json-schema-validator/test/issue-311/schema.json
andrejlevkovitch ed46fdefb1 fix issue-311
2024-01-26 16:39:47 +01:00

20 lines
316 B
JSON

{
"type": "object",
"properties": {
"element": {
"$ref": "#/$defs/element"
}
},
"$defs": {
"element": {
"type": "array",
"items": [
{
"$comment": "the comment should not lead to fail of loading schema",
"type": "number"
}
]
}
}
}