It would be nice if there was a configuration option available so we could avoid the redundant @JsonProperty annotation. There is simply no need for the annotation when the value in the annotation is the same as the name of the field. Example:
@JsonProperty("suffix")
String suffix
This is simply redundant.