Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(error): show error message for
minLength
(#73)
Suppose, Schema contains one of the properties contains `minLength` like ``` { "type": "object", "properties": { "id": { "type": "string", "maxLength": 8, "minLength": 8 } } } ``` and attempted to validate JSON like ```{ "id":"test" }``` Currently, Validation raises message like `max length of 8 characters exceeded: test` and it is invalid error message
- Loading branch information