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

14 lines
236 B
JSON
Raw Normal View History

2024-12-09 08:28:32 +00:00
{
"unique": {
"type": "array",
"uniqueItems": true
},
"notunique": {
"type": "array",
"uniqueItems": false
},
"schemaerror": {
"type": "array",
"uniqueItems": 1
}
}