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

Implementation of json-schema.org

Results 3 json-schema-validator issues
Sort by recently updated
recently updated
newest added

Obviously due to the lack of private members in Python I could hack my way around this but there doesn't seem to be an intended public method to push schemas...

If schema file is as bellow { "$schema": "http://json-schema.org/draft-04/schema", "definitions": { "positiveInteger": { "type": "integer", "minimum": 0 } }, "$ref": "#definitions/positiveInteger" } and data is -100 the check should return...