I have a json schema that looks like this:
"properties": {
"media": {
"javaType" : "java.util.Map<String,String[]>",
"type":"object"
}
}
In 0.4.7 this was generated:
@JsonProperty("media")
public Map<String, String[]> getMedia() {
return media;
}
In 0.4.8 this was generated:
@JsonProperty("media")
public Map<String, String> getMedia() {
return media;
}
I have a json schema that looks like this:
In 0.4.7 this was generated:
In 0.4.8 this was generated: