I'm looking for tool to work with JSON Schema in java.
Main requirement is interface generation. I'd like to get interfaces from parser API and provide my own implementations to serializer API. The main purpose is to avoid beans pollution with annotations like JsonProperty, JsonIgnore and so on.
There are many tools that can generate java beans (classes) from JSON Schema.
Jackson has a feature @JsonSerialize(as=MyInterface.class), but I could not find any tools to generate interfaces from schema.