org.eel.kitchen.jsonschema.examples.Example5 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema-validator Show documentation
Show all versions of json-schema-validator Show documentation
A Java implementation of the JSON Schema specification
/*
* 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 org.eel.kitchen.jsonschema.examples;
import com.fasterxml.jackson.databind.JsonNode;
import org.eel.kitchen.jsonschema.main.JsonSchema;
import org.eel.kitchen.jsonschema.main.JsonSchemaException;
import org.eel.kitchen.jsonschema.main.JsonSchemaFactory;
import org.eel.kitchen.jsonschema.report.ValidationReport;
import java.io.IOException;
import static org.eel.kitchen.jsonschema.main.JsonSchemaFactory.*;
/**
* 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 Builder}, and more precisely {@link
* Builder#setNamespace(String)}. After this, {@link JsonSchemaFactory#fromURI(
* String)} and assimilates will resolve all URIs against this namespace (which
* is empty by default).
*
* 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
extends ExampleBase
{
private static final String NAMESPACE
= "resource:/org/eel/kitchen/jsonschema/examples/split/";
public static void main(final String... args)
throws IOException, JsonSchemaException
{
final JsonNode good = loadResource("/fstab-good.json");
final JsonNode bad = loadResource("/fstab-bad.json");
final JsonNode bad2 = loadResource("/fstab-bad2.json");
final JsonSchemaFactory factory = new JsonSchemaFactory.Builder()
.setNamespace(NAMESPACE).build();
final JsonSchema schema = factory.fromURI("fstab.json");
ValidationReport report;
report = schema.validate(good);
printReport(report);
report = schema.validate(bad);
printReport(report);
report = schema.validate(bad2);
printReport(report);
}
}