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

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

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

public class BasicSchema extends AbstractSchema
{
    private String $schema;

    public String getDollarSchema()
    {
        return $schema;
    }

    public void addDollarSchema(String schemaUri)
    {
        this.$schema = schemaUri;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy