js2model icon indicating copy to clipboard operation
js2model copied to clipboard

Results 8 js2model issues
Sort by recently updated
recently updated
newest added

Currently --lang cpp generation fails to generate code for "type": "number" this addresses that.

I like the idea of your project, but can't get it to work. Example: ```bash $ js2model -l py service.schema.json ``` ```python Traceback (most recent call last): File "/usr/local/lib/python3.6/site-packages/mako/lookup.py", line...

from the spec: http://json-schema.org/latest/json-schema-validation.html#anchor75 js2model doesn't like this example: ``` $ cat test.json { "id": "http://some.site.somewhere/entry-schema#", "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "storage" ], "properties": { "storage": { "oneOf": [...

Checking the schema using `assert` in C++ results in application crash when the input document is not correct. By validating the input document before parsing this should never happen. Schema...