com.atlassian.json.schema.annotation.SchemaDependency Maven / Gradle / Ivy
package com.atlassian.json.schema.annotation;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Target({})
@Retention(RUNTIME)
@Inherited
public @interface SchemaDependency
{
String property();
String[] requires();
}