com.github.fge.jsonschema.examples.Example4 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
The newest version!
/*
* Copyright (c) 2014, Francis Galiegue ([email protected])
*
* This software is dual-licensed under:
*
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
* later version;
* - the Apache Software License (ASL) version 2.0.
*
* The text of this file and of both licenses is available at the root of this
* project or, if you have the jar distribution, in directory META-INF/, under
* the names LGPL-3.0.txt and ASL-2.0.txt respectively.
*
* Direct link to the sources:
*
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
*/
package com.github.fge.jsonschema.examples;
import com.fasterxml.jackson.databind.JsonNode;
import com.github.fge.jsonschema.core.exceptions.ProcessingException;
import com.github.fge.jsonschema.core.report.ProcessingReport;
import com.github.fge.jsonschema.main.JsonSchema;
import com.github.fge.jsonschema.main.JsonSchemaFactory;
import java.io.IOException;
/**
* Fourth example: schema loading via URIs, and subschema addressing
*
*
*
*
*
* This demonstrates two capabilities of {@link JsonSchemaFactory}:
*
*
* - the ability to Utils.load schemas via URIs;
* - the ability to address subschemas in a schema.
*
*
* The implementation provides a {@code resource} scheme which allows to Utils.load
* JSON from files in the classpath. It is strictly equivalent to calling {@link
* Class#getResourceAsStream(String)}.
*
* The URI used is {@code
* resource:/org/eel/kitchen/jsonschema/examples/fstab-sub.json}. Because we
* want to validate against the {@code fstab} subschema, we use {@link
* JsonSchemaFactory#getJsonSchema(String)} to Utils.load the actual schema; the URI
* used as an argument also has a JSON Pointer as a fragment.
*
* Files validated, and the validation outputs, are the same as for {@link
* Example2}.
*/
public final class Example4
{
private static final String SCHEMA_URI
= "resource:/com/github/fge/jsonschema/examples/fstab-sub.json#/fstab";
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 JsonSchemaFactory factory = JsonSchemaFactory.byDefault();
final JsonSchema schema = factory.getJsonSchema(SCHEMA_URI);
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);
}
}