vcpe/srcs/libs/docs/json_schema/schema/test-uniqueitems.json

14 lines
236 B
JSON
Raw Normal View History

{
"unique": {
"type": "array",
"uniqueItems": true
},
"notunique": {
"type": "array",
"uniqueItems": false
},
"schemaerror": {
"type": "array",
"uniqueItems": 1
}
}