json-schema-compatibility icon indicating copy to clipboard operation
json-schema-compatibility copied to clipboard

Compatibility layer to use v3 JSON Schemas with more modern tools

Results 2 json-schema-compatibility issues
Sort by recently updated
recently updated
newest added

Schema version is not updated on conversion. I was going to add `obj['$schema'] = 'http://json-schema.org/draft-04/schema#';` but your function is recursive.

conversion fails with following json: ``` javascript { "$schema": "http://json-schema.org/draft-03/schema#", "type": "object", "properties": { "data": { "type": "array", "default": null } } } ``` it fails when handling null value:...