com.networknt.schema.Version6 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 json schema validator that supports draft v4, v6, v7, v2019-09 and v2020-12
The newest version!
package com.networknt.schema;
import java.util.Arrays;
/**
* Draft 6 dialect.
*/
public class Version6 implements JsonSchemaVersion {
private static final String IRI = SchemaId.V6;
// Draft 6 uses "$id"
private static final String ID = "$id";
private static class Holder {
private static final JsonMetaSchema INSTANCE;
static {
INSTANCE = JsonMetaSchema.builder(IRI)
.specification(SpecVersion.VersionFlag.V6)
.idKeyword(ID)
.formats(Formats.DEFAULT)
.keywords(ValidatorTypeCode.getKeywords(SpecVersion.VersionFlag.V6))
// keywords that may validly exist, but have no validation aspect to them
.keywords(Arrays.asList(
new NonValidationKeyword("$schema"),
new NonValidationKeyword("$id"),
new AnnotationKeyword("title"),
new AnnotationKeyword("description"),
new AnnotationKeyword("default"),
new NonValidationKeyword("additionalItems"),
new NonValidationKeyword("definitions"),
new AnnotationKeyword("examples")
))
.build();
}
}
public JsonMetaSchema getInstance() {
return Holder.INSTANCE;
}
}