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

de.schegge.rest.markdown.openapi.ContentSchema Maven / Gradle / Ivy

package de.schegge.rest.markdown.openapi;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

public final class ContentSchema {

    @JsonProperty("$ref")
    private String ref;

    @JsonIgnore
    private Schema schema;

    public String getRef() {
        return ref;
    }

    public void setRef(String ref) {
        this.ref = ref;
    }

    public Schema getSchema() {
        return schema;
    }

    public void setSchema(Schema schema) {
        this.schema = schema;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy