json-schema-validator
json-schema-validator copied to clipboard
A fast Java JSON schema validator that supports draft V4, V6, V7, V2019-09 and V2020-12
Hello there! This is both a question and a proposal (although duplicate of https://github.com/networknt/json-schema-validator/issues/58). I'm assuming `json-schema-validator` would not produce `ValidationMessage`s with `path` properties following the most exotic JSONPath features...
Hi. The `if-then` construct with the combination of `allOf` does not respect the `enum`s defined in the property value. The properties value as provided in the `if` construct is alone...
GraalVM has the polyglot module with built-in support for JavaScript and its regular expression syntax. Would be great if it became another option for regex validation
Every invalid json element shows same error: **$: should be valid to one and only one of the schemas.**
We were having issues with the One Of Validator and i ran the "One Of" test cases provided in your test suite to confirm the issues my team was having:...
We are using json-schema-validator for validate given json string is valid. Recently, we need to validate json fields in object has valid format (using regex) From draft-v6, json schema specification...
I am wondering if there is a feature flag in the library to disallow remote references during validation? For example, only internal references are allowed: ``` { "definitions": { "pet":...
Hi, **VERSION: 1.0.40** I've encountered a problem which I cannot solve. Here is my json-schema validator. `{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "http://example.com/example.json", "type": "object", "title": "The root schema", "description": "The root...
I am getting following error when trying to validate json data using YAML schema. I am using networknt library as given here com.fasterxml.jackson.dataformat.yaml.snakeyaml.error.MarkedYAMLException: mapping values are not allowed here in...
Hi all, I have the the need to validate the JSON Schemas being correct and loadable (especially `$ref` resolution). So, I've added two step validation to my app. **Step 1:...