Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix wrong error reported when the value is smaller than the maximum.
Can be tested with the following: *Schema* { "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://json-schema.org/draft-07/schema#", "description": "Representation of the core response to the front end", "type": "object", "required": ["testProperty"], "properties": { "testProperty": { "type": "integer", "minimum": 50, "maximum: 60 } } } *JSON* { "testProperty": 60 }
- Loading branch information