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

pl.zientarski.JsonSchema4 Maven / Gradle / Ivy

Go to download

The goal of this project is to provide comprehensive, feature-complete and well-tested mapper from Java classes to JSON schema format.

The newest version!
package pl.zientarski;

public interface JsonSchema4 {
    public static final String TYPE_ARRAY = "array";
    public static final String TYPE_BOOLEAN = "boolean";
    public static final String TYPE_INTEGER = "integer";
    public static final String TYPE_NUMBER = "number";
    public static final String TYPE_NULL = "null";
    public static final String TYPE_OBJECT = "object";
    public static final String TYPE_STRING = "string";
    public static final String TYPE_ANY = "any";

    public static final String FORMAT_DATE_TIME = "date-time";
    public static final String SCHEMA_REFERENCE = "http://json-schema.org/draft-04/schema#";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy