All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fge.jsonschema.examples.Example4 Maven / Gradle / Ivy

There is a newer version: 2.2.6
Show newest version
/*
 * 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.exceptions.ProcessingException;
import com.github.fge.jsonschema.main.JsonSchema;
import com.github.fge.jsonschema.main.JsonSchemaFactory;
import com.github.fge.jsonschema.report.ProcessingReport;

import java.io.IOException;

/**
 * Fourth example: schema loading via URIs, and subschema addressing
 *
 * 

link to source code

* *

link to schema

* *

This demonstrates two capabilities of {@link JsonSchemaFactory}:

* *
    *
  • the ability to load schemas via URIs;
  • *
  • the ability to address subschemas in a schema.
  • *
* *

The implementation provides a {@code resource} scheme which allows to 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 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 extends ExampleBase { 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 = loadResource("/fstab-good.json"); final JsonNode bad = loadResource("/fstab-bad.json"); final JsonNode bad2 = loadResource("/fstab-bad2.json"); final JsonSchemaFactory factory = JsonSchemaFactory.byDefault(); final JsonSchema schema = factory.getJsonSchema(SCHEMA_URI); ProcessingReport report; report = schema.validate(good); printReport(report); report = schema.validate(bad); printReport(report); report = schema.validate(bad2); printReport(report); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy