ruby-jsonchema
ruby-jsonchema copied to clipboard
json schema library ruby porting from http://code.google.com/p/jsonschema/
According to [jsonschema IETF draft-03](http://tools.ietf.org/html/draft-zyp-json-schema-03), the `optional` attribute was replaced with the `required` attribute (default is required=false).
Hi there: I have an API that can receive an object (which I'm validating succesfully with jsonschema) or an array of objects.....I don't know how to validate that structure..could you...
The spec says that the schema is self validating, but when I try using your library, I get this error: ``` JSON::Schema::ValueError: dependencies is missing and it is not optional...
Hi, dear validation addicts I recently had an issue when trying to validate a string against a pattern case insensitive. Indeed, the regexp is currently built as following: ``` ruby...