jio icon indicating copy to clipboard operation
jio copied to clipboard

jio is a json schema validator similar to joi

Results 3 jio issues
Sort by recently updated
recently updated
newest added

It looks like Without() was incorrectly checking the length of contains. This PR also has a patch which closes #5.

Using the README example with a small change (add optional "foo") will result in the `Without()` being ignored. This is because AnySchema.Optional() calls ctx.Skip(): ```go package main import ( "fmt"...

It might be good have multiple errors for fields. Right now validation return error message only about one field, not all failed.