mirror of
https://github.com/tristanpenman/valijson.git
synced 2025-01-06 00:31:11 +01:00
20 lines
355 B
JSON
20 lines
355 B
JSON
|
{
|
||
|
"comment": "Document must contain an array of integers, all unique.",
|
||
|
"allOf": [
|
||
|
{
|
||
|
"items": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"additionalItems": false,
|
||
|
"type": "array"
|
||
|
},
|
||
|
{
|
||
|
"items": {
|
||
|
"type": "number"
|
||
|
},
|
||
|
"additionalItems": false,
|
||
|
"type": "array",
|
||
|
"uniqueItems": true
|
||
|
}
|
||
|
]
|
||
|
}
|