com.github.fge.jsonschema.examples.Example8 Maven / Gradle / Ivy
Show all versions of json-schema-validator Show documentation
/*
* 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.jackson.NodeType;
import com.github.fge.jsonschema.cfg.ValidationConfiguration;
import com.github.fge.jsonschema.cfg.ValidationConfigurationBuilder;
import com.github.fge.jsonschema.core.exceptions.ProcessingException;
import com.github.fge.jsonschema.core.report.ProcessingReport;
import com.github.fge.jsonschema.format.AbstractFormatAttribute;
import com.github.fge.jsonschema.format.FormatAttribute;
import com.github.fge.jsonschema.library.DraftV4Library;
import com.github.fge.jsonschema.library.Library;
import com.github.fge.jsonschema.main.JsonSchema;
import com.github.fge.jsonschema.main.JsonSchemaFactory;
import com.github.fge.jsonschema.messages.JsonSchemaValidationBundle;
import com.github.fge.jsonschema.processors.data.FullData;
import com.github.fge.msgsimple.bundle.MessageBundle;
import com.github.fge.msgsimple.load.MessageBundles;
import com.github.fge.msgsimple.source.MapMessageSource;
import com.github.fge.msgsimple.source.MessageSource;
import java.io.IOException;
import java.util.UUID;
/**
* Eighth example: augmenting schemas with custom format attributes
*
*
*
*
*
* This example adds a custom format attribute named {@code uuid}, which
* checks whether a string instance is a valid UUID.
*
* For this, you need to write an implementation of {@link FormatAttribute},
* registering it in a {@link Library}, and feed that library to a {@link
* ValidationConfiguration} which you submit to the {@link JsonSchemaFactory}.
*
*
* Here, we choose to augment the draft v4 library, which we get hold of
* using {@link DraftV4Library#get()}; we thaw it, add the new attribute and
* freeze it again. We also choose to make this new library the default by
* using {@link
* ValidationConfigurationBuilder#setDefaultLibrary(String, Library)}.
*
* Note also that the schema has no {@code $schema} defined; as a result, the
* default library is used (it is not recommended to omit {@code $schema}
* in your schemas, however).
*
* Two sample files are given: the first (link) is valid, the other (link) isn't (the provided {@code id}
* for the second array element is invalid).
*/
public final class Example8
{
public static void main(final String... args)
throws IOException, ProcessingException
{
final JsonNode customSchema = Utils.loadResource("/custom-fmt.json");
final JsonNode good = Utils.loadResource("/custom-fmt-good.json");
final JsonNode bad = Utils.loadResource("/custom-fmt-bad.json");
/*
* Build a new library with our added format attribute
*/
final Library library = DraftV4Library.get().thaw()
.addFormatAttribute("uuid", UUIDFormatAttribute.getInstance())
.freeze();
/*
* Build a new message bundle with our added error message
*/
final String key = "invalidUUID";
final String value = "input is not a valid UUID";
final MessageSource source = MapMessageSource.newBuilder()
.put(key, value).build();
final MessageBundle bundle
= MessageBundles.getBundle(JsonSchemaValidationBundle.class)
.thaw().appendSource(source).freeze();
/*
* Build our dedicated validation configuration
*/
final ValidationConfiguration cfg = ValidationConfiguration.newBuilder()
.setDefaultLibrary("http://my.site/myschema#", library)
.setValidationMessages(bundle).freeze();
final JsonSchemaFactory factory = JsonSchemaFactory.newBuilder()
.setValidationConfiguration(cfg).freeze();
final JsonSchema schema = factory.getJsonSchema(customSchema);
ProcessingReport report;
report = schema.validate(good);
System.out.println(report);
report = schema.validate(bad);
System.out.println(report);
}
private static final class UUIDFormatAttribute
extends AbstractFormatAttribute
{
private static final FormatAttribute INSTANCE
= new UUIDFormatAttribute();
private UUIDFormatAttribute()
{
super("uuid", NodeType.STRING);
}
public static FormatAttribute getInstance()
{
return INSTANCE;
}
@Override
public void validate(final ProcessingReport report,
final MessageBundle bundle, final FullData data)
throws ProcessingException
{
final String value = data.getInstance().getNode().textValue();
try {
UUID.fromString(value);
} catch (IllegalArgumentException ignored) {
report.error(newMsg(data, bundle, "invalidUUID")
.put("input", value));
}
}
}
}