Justify is a JSON validator based on JSON Schema Specification and Jakarta JSON Processing API (JSON-P).
For Justify version 2.x users: Please refer to old README instead of this one for more appropriate instructions.
The difference between Justify version 3.x and 2.x is:
jakarta.json
.javax.json
.This software is available in the Maven Central Repository and the following dependency should be added to your build.
Maven
<dependency>
<groupId>org.leadpony.justify</groupId>
<artifactId>justify</artifactId>
<version>3.1.0</version>
</dependency>
Gradle
implementation 'org.leadpony.justify:justify:3.1.0'
Note that the addition of this dependency brings the following artifacts as transitive dependencies.
jakarta.json:jakarta.json-api
com.ibm.icu:icu4j
Besides the library itself, an implementation of Jakarta JSON Processing API is needed during runtime. This library supports the following implementations and you can select whichever you prefer.
Please add exactly one dependency to your build as shown below.
Maven
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.json</artifactId>
<classifier>module</classifier>
<version>2.0.0</version>
<scope>runtime</scope>
</dependency>
Gradle
runtimeOnly 'org.glassfish:jakarta.json:2.0.0:module'
Please note that the classifier module
is required when using this implementation.
Maven
<dependency>
<groupId>org.leadpony.joy</groupId>
<artifactId>joy-classic</artifactId>
<version>2.0.0</version>
<scope>runtime</scope>
</dependency>
Gradle
runtimeOnly 'org.leadpony.joy:joy-classic:2.0.0'
JsonValidationService service = JsonValidationService.newInstance();
// Reads the JSON schema
JsonSchema schema = service.readSchema(Paths.get("news.schema.json"));
// Problem handler which will print problems found.
ProblemHandler handler = service.createProblemPrinter(System.out::println);
Path path = Paths.get("fake-news.json");
// Parses the JSON instance by JsonParser
try (JsonParser parser = service.createParser(path, schema, handler)) {
while (parser.hasNext()) {
JsonParser.Event event = parser.next();
// Do something useful here
}
}
JsonValidationService service = JsonValidationService.newInstance();
// Reads the JSON schema
JsonSchema schema = service.readSchema(Paths.get("news.schema.json"));
// Problem handler which will print problems found.
ProblemHandler handler = service.createProblemPrinter(System.out::println);
Path path = Paths.get("fake-news.json");
// Reads the JSON instance by JsonReader
try (JsonReader reader = service.createReader(path, schema, handler)) {
JsonValue value = reader.readValue();
// Do something useful here
}
Justify CLI is a command-line wrapper of Justify library. This utility can be used to validate JSON documents against JSON schemas without writing any code.
Check the Releases page to get the latest distribution in tar.gz
or zip
format,
whichever you prefer. The software requires Java 8 or higher to run.
After unpacking the downloaded file, just typing the following command validates a JSON instance against a JSON schema.
$ ./justify -s <path/to/schema> -i <path/to/instance>
The following command validates a JSON schema against its metaschema.
$ ./justify -s <path/to/schema>
Required option to specify a path to a JSON schema against which one or more JSON instances will be validated.
Optional option to specify a path to a JSON instance to be validated. Multiple instances can be specified using whitespace as a delimiter.
Optional option to specify a path to a JSON schema to be referenced by other JSON schemas. Multiple schemas can be specified using whitespace as a delimiter.
Displays all available options including those shown above.
This software is one of the most correct implementation of the JSON Schema Specification. Please refer to the result of JSON Schema Conformance Test.
default
KeywordThe missing properties and/or items in the instance can be filled with default values provided by default
keyword while it is being validated.
For example, the input JSON instance shown below
{
"red": 64,
"green": 128,
"blue": 192
}
will be filled with the default value and modified to:
{
"red": 64,
"green": 128,
"blue": 192,
"alpha": 255
}
Both JsonParser
and JsonReader
support the feature. JsonParser
produces additional events caused by the default values and JsonReader
expands objects and arrays with the additional values.
By default, this feature is disabled and the instance never be modified. The following code shows how to explicitly enable the feature for the parsers and readers.
ValidationConfig config = service.createValidationConfig();
config.withSchema(schema)
.withProblemHandler(handler)
.withDefaultValues(true); // This enables the feature.
// For retrieving parser factory
JsonParserFactory parserFactory = service.createParserFactory(config.getAsMap());
// Or for retrieving reader factory
JsonReaderFactory readerFactory = service.createReaderFactory(config.getAsMap());
For more information, please see Default Value example.
Just replacing the JSON-P implementation with joy-yaml
provided by Joy project as shown below enables the validation of YAML documents.
<dependency>
<groupId>org.leadpony.joy</groupId>
<artifactId>joy-yaml</artifactId>
<version>2.0.0</version>
<scope>runtime</scope>
</dependency>
For more information, please see YAML Validator example.
The following tools are required to build this software.
The commands below build this software and install it into your local Maven repository.
$ git clone --recursive https://github.com/leadpony/justify.git
$ cd justify
$ mvn clean install -P release
There exist several JSON validator implementations conformant to the JSON Schema Specification, including those for other programming languages. The list of implementations is available on the JSON Schema web site.
Copyright © 2018-2020 the Justify authors. This software is licensed under Apache License, Versions 2.0.