xpertss.json.schema.examples.Example5 Maven / Gradle / Ivy
Show all versions of json-schema Show documentation
package xpertss.json.schema.examples;
import com.fasterxml.jackson.databind.JsonNode;
import xpertss.json.schema.core.exceptions.ProcessingException;
import xpertss.json.schema.core.load.SchemaLoader;
import xpertss.json.schema.core.load.configuration.LoadingConfiguration;
import xpertss.json.schema.core.load.configuration.LoadingConfigurationBuilder;
import xpertss.json.schema.core.load.uri.URITranslatorConfiguration;
import xpertss.json.schema.core.report.ProcessingReport;
import xpertss.json.schema.main.JsonSchema;
import xpertss.json.schema.main.JsonSchemaFactory;
import xpertss.json.schema.main.JsonSchemaFactoryBuilder;
import java.io.IOException;
/**
* Fifth example: setting a URI namespace; relative URI resolution
*
*
*
* This example demonstrates another capability of {@link JsonSchemaFactory}:
* the ability to set a URI namespace. This requires to customize the factory,
* and therefore go through {@link JsonSchemaFactoryBuilder} again.
*
* In order to set a URI namespace, we must grab a {@link
* LoadingConfigurationBuilder}, set the namespace, freeze it, and pass it to
* the factory builder and then freeze the factory.
*
* The net effect is that all schema loading done by {@link SchemaLoader}
* will now resolve against this namespace, and this includes arguments to
* {@link JsonSchemaFactory#getJsonSchema(String)}.
*
* The schemas are split in two:
*
*
*
* The first refers to the second one via the relative URI {@code
* mntent.json}. This works precisely because a URI namespace has been set: all
* URIs are resolved against this namespace.
*
* Files validated, and the validation outputs, are the same as for {@link
* Example2}.
*/
public final class Example5
{
private static final String NAMESPACE
= "resource:/com/github/fge/jsonschema/examples/split/";
public static void main(final String... args)
throws IOException, ProcessingException
{
final JsonNode good = Utils.loadResource("/fstab-good.json");
final JsonNode bad = Utils.loadResource("/fstab-bad.json");
final JsonNode bad2 = Utils.loadResource("/fstab-bad2.json");
final URITranslatorConfiguration translatorCfg
= URITranslatorConfiguration.newBuilder()
.setNamespace(NAMESPACE).freeze();
final LoadingConfiguration cfg = LoadingConfiguration.newBuilder()
.setURITranslatorConfiguration(translatorCfg).freeze();
final JsonSchemaFactory factory = JsonSchemaFactory.newBuilder()
.setLoadingConfiguration(cfg).freeze();
final JsonSchema schema = factory.getJsonSchema("fstab.json");
ProcessingReport report;
report = schema.validate(good);
System.out.println(report);
report = schema.validate(bad);
System.out.println(report);
report = schema.validate(bad2);
System.out.println(report);
}
}