Skip to content

A JSON Schema validation implementation in pure Java, which aims for correctness and performance, in that order

Notifications You must be signed in to change notification settings

kedar031/json-schema-validator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Read me first

The license of this project is LGPLv3 or later. See file src/main/resources/LICENSE for the full text.

Versions:

If you are looking for a quick start, see the code examples. You can see what is new in 1.4.x here.

Versioning scheme policy

The versioning scheme is defined by the middle digit of the version number:

  • if this number is even, then this is the stable version; no new features will be added to such versions, and the user API will not change (save for some additions if requested).
  • if this number is odd, then this is the development version; new features will be added to those versions only, and the user API may change.

What it is

This is an implementation of all validation aspects (schema syntax validation; instance, aka JSON data, validation) of the JSON Schema specification written in pure Java. This allows pure server side JSON schema validation if this is what you are looking for.

This implementation has the following features:

  • thread safe, concurrent-friendly validation;
  • very fast;
  • full draft v3 validation, including hyper schema;
  • draft v4 validation;
  • $schema detection;
  • full schema addressing support;
  • validation of numeric JSON instances of arbitrary scale/precision;
  • ECMA 262 regexes (using Rhino);
  • extensive customization: (un)registering URI schemes, setting namepaces, redirections, registering schemas/keywords, others.

Relevant documents

Currently, JSON Schema is not an official RFC. In fact, the existing draft is obsolete -- but it is used on the Internet nonetheless. This implementation is based on the following drafts:

More...

For a detailed discussion of the implementation, see here. For a list of planned features for next versions, see here.

Please see the wiki for more details.

About

A JSON Schema validation implementation in pure Java, which aims for correctness and performance, in that order

Resources

Stars

Watchers

Forks

Packages

No packages published