com.github.fge.jsonschema.examples.Example10 Maven / Gradle / Ivy
/*
* Copyright (c) 2012, Francis Galiegue
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Lesser GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Lesser GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.github.fge.jsonschema.examples;
import com.fasterxml.jackson.databind.JsonNode;
import com.github.fge.jsonschema.cfg.LoadingConfiguration;
import com.github.fge.jsonschema.cfg.LoadingConfigurationBuilder;
import com.github.fge.jsonschema.exceptions.ProcessingException;
import com.github.fge.jsonschema.main.JsonSchema;
import com.github.fge.jsonschema.main.JsonSchemaFactory;
import com.github.fge.jsonschema.ref.JsonRef;
import com.github.fge.jsonschema.report.ProcessingReport;
import java.io.IOException;
/**
* Tenth example: registering schemas
*
*
*
* In this example, we register a custom schema with a given URI, and
* initiate the {@link JsonSchema} instance using that URI. This is done by
* customizing a {@link LoadingConfiguration} and registering schemas using
* {@link LoadingConfigurationBuilder#preloadSchema(String, JsonNode)}.
*
* The only necessary condition for the URI is for it to be an absolute JSON
* reference (see {@link JsonRef#isAbsolute()}), and you can register as many
* schemas as you want. Here, we register both schemas from {@link Example5}.
* You will notice that the scheme for these URIs is {@code xxx}: it does not
* matter in the slightest that it is not a supported scheme by default, the
* schema is registered all the same.
*
* This also shows that reference resolution still works in such a case,
* since the {@code mntent} schema is referred to via a relative URI from the
* {@code fstab} schema.
*
*/
public final class Example10
extends ExampleBase
{
private static final String URI_BASE = "xxx://foo.bar/path/to/";
public static void main(final String... args)
throws IOException, ProcessingException
{
final LoadingConfigurationBuilder builder
= LoadingConfiguration.newBuilder();
JsonNode node;
String uri;
node = loadResource("/split/fstab.json");
uri = URI_BASE + "fstab.json";
builder.preloadSchema(uri, node);
node = loadResource("/split/mntent.json");
uri = URI_BASE + "mntent.json";
builder.preloadSchema(uri, node);
final JsonSchemaFactory factory = JsonSchemaFactory.newBuilder()
.setLoadingConfiguration(builder.freeze()).freeze();
final JsonSchema schema
= factory.getJsonSchema(URI_BASE + "fstab.json");
final JsonNode good = loadResource("/fstab-good.json");
final JsonNode bad = loadResource("/fstab-bad.json");
final JsonNode bad2 = loadResource("/fstab-bad2.json");
ProcessingReport report;
report = schema.validate(good);
printReport(report);
report = schema.validate(bad);
printReport(report);
report = schema.validate(bad2);
printReport(report);
}
}