
dev.harrel.jsonschema.Annotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-schema Show documentation
Show all versions of json-schema Show documentation
Library for JSON schema validation
package dev.harrel.jsonschema;
/**
* {@code Annotation} class represents collected annotation.
*/
public class Annotation extends EvaluationItem {
private final Object annotation;
Annotation(String evaluationPath, String schemaLocation, String instanceLocation, String keyword, Object annotation) {
super(evaluationPath, schemaLocation, instanceLocation, keyword);
this.annotation = annotation;
}
/**
* Returns collected annotation.
*/
public Object getAnnotation() {
return annotation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy