John Dimeo

Results 117 comments of John Dimeo

Is this fixed by https://github.com/atombender/go-jsonschema/pull/29? Waiting for a release! :-)

I think this is more a question for JSON schemas. I think the "right" way is to use a choice, either a "closed" enum *or* an open string for future...

I am very interested in this but am not sure I have the time to do a contribution. Thanks for keeping it alive.

Have you looked into `@JsonSubTypes`? Scroll down to section 5: https://www.baeldung.com/jackson-annotations

This is also related to other recent ticket https://github.com/FasterXML/jackson-dataformats-text/issues/202 which has useful commentary from the author himself about polymorphism with CSV

Thank you so much for your fast response! I can definitely wait for 3.x and/or use `YAMLFactory` in the meantime.

+1. Just needed this for Jersey responses: ``` @AllArgsConstructor(staticName = "wrap") public class AutoCloseableResponse implements AutoCloseable { @Getter private Response response; @Override public void close() { response.close(); } } ```...

Hello, I found this issue while trying to troubleshoot this plugin (the error I'm getting is that it could not find or load main class null). I'm using the shade...

I've successfully used this plugin with SWT by using the Maven shade plugin

I also am eager for 2019-09 and/or 2020-12 support! thank you!