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

com.networknt.schema.Version6 Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy