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

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

The newest version!
package com.networknt.schema;

import java.util.Arrays;

/**
 * Draft 4 dialect.
 */
public class Version4 implements JsonSchemaVersion {
    private static final String IRI = SchemaId.V4;
    private static final String ID = "id";
    
    private static class Holder {
        private static final JsonMetaSchema INSTANCE;
        static {
            INSTANCE = JsonMetaSchema.builder(IRI)
                    .specification(SpecVersion.VersionFlag.V4)
                    .idKeyword(ID)
                    .formats(Formats.DEFAULT)
                    .keywords(ValidatorTypeCode.getKeywords(SpecVersion.VersionFlag.V4))
                    // 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("definitions"),
                            new NonValidationKeyword("additionalItems"),
                            new AnnotationKeyword("exampleSetFlag"),
                            new NonValidationKeyword("exclusiveMinimum"), // exclusiveMinimum boolean handled by minimum validator
                            new NonValidationKeyword("exclusiveMaximum")  // exclusiveMaximum boolean handled by maximum validator
                    ))
                    .build(); 
        }
    }

    public JsonMetaSchema getInstance() {
        return Holder.INSTANCE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy