diff --git a/lib/util/random.js b/lib/util/random.js index 1d7404554b592d522833b407141d7f84f18fa03d..cf9542ddbd29329b59691de190bc6d0518604160 100644 Binary files a/lib/util/random.js and b/lib/util/random.js differ diff --git a/spec/core/issues/minmax.json b/spec/core/issues/minmax.json new file mode 100644 index 0000000000000000000000000000000000000000..9b294306992c07849ea856eb9bda957c60f27d13 --- /dev/null +++ b/spec/core/issues/minmax.json @@ -0,0 +1,18 @@ +[ + { + "description": "min/max constraints", + "tests": [ + { + "description": "should allow minItems > 5", + "schema": { + "type": "array", + "minItems": 10, + "items": { + "type": "string" + } + }, + "valid": true + } + ] + } +]