-
Notifications
You must be signed in to change notification settings - Fork 2
Spafaridis Xenofon edited this page Jan 2, 2016
·
4 revisions
$validator = new ArrayValidator(
1, //minItems
2, //maxItems
new EnumValidator(['one', 'two', 'three', 'four'], true), //Items (allowed items in array)
true, //uniqueItems
false //additionalItems
);
{
"type": "array",
"minItems": 1,
"maxItems": 2,
"additionalItems": false,
"items": {
"type": "enum",
"enum": [
"one",
"two",
"three",
"four"
],
"validateType": true
},
"uniqueItems": true
}