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

se.hiq.oss.json.schema.JsonSchema Maven / Gradle / Ivy

There is a newer version: 0.8
Show newest version
package se.hiq.oss.json.schema;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marks classes as backed by a JSON Schema, these classes will be
 * auto-discovered.
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface JsonSchema {
    String name();

    String version();

    String location();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy