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

com.atlassian.json.schema.model.JsonSchema Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package com.atlassian.json.schema.model;

import java.util.Map;
import java.util.Set;

public interface JsonSchema
{
    String getId();
    String getType();
    String getRef();
    String getTitle();
    String getDescription();
    String getFieldTitle();
    String getFieldDescription();
    void setTitle(String title);
    void setDescription(String description);
    void setFieldTitle(String title);
    void setFieldDescription(String description);
    Set getAllOf();
    Set getAnyOf();
    Set getOneOf();
    JsonSchema getNot();
    Map getDefinitions();
    String getDefaultValue();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy