package com.jetdrone.vertx.yoke.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface JsonSchema { /** * The URI to the schema */ String value(); String id() default ""; }