/* * 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.load.SchemaLoader; import com.github.fge.jsonschema.main.JsonSchema; import com.github.fge.jsonschema.main.JsonSchemaFactory; import com.github.fge.jsonschema.main.JsonSchemaFactoryBuilder; import com.github.fge.jsonschema.report.ProcessingReport; import java.io.IOException; /** * Fifth example: setting a URI namespace; relative URI resolution * *

link to source code

* *

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 JsonSchemaFactoryBuilder} again.

* *

In order to set a URI namespace, we must grab a {@link * LoadingConfigurationBuilder}, set the namespace, freeze it, and pass it to * the factory builder and then freeze the factory.

* *

The net effect is that all schema loading done by {@link SchemaLoader} * will now resolve against this namespace, and this includes arguments to * {@link JsonSchemaFactory#getJsonSchema(String)}.

* *

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:/com/github/fge/jsonschema/examples/split/"; 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 LoadingConfiguration cfg = LoadingConfiguration.newBuilder() .setNamespace(NAMESPACE).freeze(); final JsonSchemaFactory factory = JsonSchemaFactory.newBuilder() .setLoadingConfiguration(cfg).freeze(); final JsonSchema schema = factory.getJsonSchema("fstab.json"); ProcessingReport report; report = schema.validate(good); printReport(report); report = schema.validate(bad); printReport(report); report = schema.validate(bad2); printReport(report); } }