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

xpertss.json.schema.examples.Example2 Maven / Gradle / Ivy

The newest version!
package xpertss.json.schema.examples;

import com.fasterxml.jackson.databind.JsonNode;
import xpertss.json.schema.core.exceptions.ProcessingException;
import xpertss.json.schema.core.load.Dereferencing;
import xpertss.json.schema.core.load.configuration.LoadingConfiguration;
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;

/**
 * Second example: inline schema addressing
 *
 * 

link to source code

* *

This example uses the same schema with one difference: the mntent * subschema is now referenced via inline addressing using an {@code id}.

* *

The schema used for validation is * here.

* *

In order to use inline schema addressing, we cannot use the default * factory: we must go through a {@link JsonSchemaFactoryBuilder} and use a * modified {@link LoadingConfiguration} to tell that we want to use inline * dereferencing.

* *

Apart from these, the files used for validation and validation results * are the same as {@link Example1}.

* * @see Dereferencing */ public final class Example2 { public static void main(final String... args) throws IOException, ProcessingException { final JsonNode fstabSchema = Utils.loadResource("/fstab-inline.json"); 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 LoadingConfiguration cfg = LoadingConfiguration.newBuilder() .dereferencing(Dereferencing.INLINE).freeze(); final JsonSchemaFactory factory = JsonSchemaFactory.newBuilder() .setLoadingConfiguration(cfg).freeze(); final JsonSchema schema = factory.getJsonSchema(fstabSchema); 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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy