com.atlassian.json.schema.model.JsonSchema Maven / Gradle / Ivy
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