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

com.github.ydoc.core.consts.Constans Maven / Gradle / Ivy

The newest version!
package com.github.ydoc.core.consts;

/**
 * @author nobugboy
 **/
public interface Constans {

    interface Key {

	String DESCRIPTION = "description";
	String TYPE = "type";
	String REQUIRED = "required";
	String ITEMS = "items";
	String PROPERTIES = "properties";
    }

    interface In {
	String HEADER = "header";
	String QUERY = "query";
	String PATH = "path";
	String BODY = "body";
    }

    interface Type {
	String STRING = "string";
	String ARRAY = "array";
	String OBJECT = "object";
	String INTEGER = "integer";
    }

    interface Other {
	String DOLLAR = "$";
	String DOT = ".";
	String LEFT = "<";
	String RIGHT = ">";
	String REF = "$ref";
	String DEFINE = "#/definitions/";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy