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
I am trying to find property definitions which are required but do not have a value. My current attempt: ```kotlin private class MyCustomWalker : JsonSchemaWalkListener { override fun onWalkStart(walkEvent: WalkEvent)...
Hi, I have a base json-schema file that I'm using to validate the response of a few APIs. The APIs all return the same format, but a few APIs return...
I have the following schema (internal-msg.yaml) that I use to validate using the json-schema-validator : ``` { "title":"InternalMessage", "type":"object", "allOf":[ { "$ref":"public-msg.yaml" }, { "properties":{ "id":{ "readOnly":false }, "status":{ "type":"boolean"...
Is it possible to add warnings when a property is not included in the schema? My use case: Building a data modeling tool built on json-schema, having strict schemas and...
More of a feature request than an issue: I followed the [JSON Schema Walkers guide](https://github.com/networknt/json-schema-validator/blob/master/doc/walkers.md#applying-defaults) about applying defaults, and expected default values to be also computed when the related schema...
Hi, I am using schema validator version 1.0.57 and realised that schema validation for readOnly doesnt work or not implemented ion this version. I am using json schema with few...
Exposing error codes is awesome, thanks for that! I was initially thinking of including the error code in the validation error message I expose to the user of my integration....
this.uriSchemaCache Unable to refresh ,also JsonSchemaFactory no extends,When json schema changes occur; only uri change,But at this point, there may be memory issues
The JSON Schema Validator appears to not raise errors when the payload includes fields that are not explicitly defined in the Swagger schema. This behavior prompts the question of whether...
I am a bit confused by the walk functionality and how to implement it... I want to walk the following schema to detect which properties have non-standard `faker` field: ```json...