I was experimenting a bit with the `@JsonIncludeProperties` introduced [recently](https://github.com/FasterXML/jackson-databind/pull/2771). It would be nice if it would automatically apply the property order instead of having to include `@JsonPropertyOrder` as well. Now we need: ``` @JsonIncludeProperties({ "id", "code", "name" }) @JsonPropertyOrder({ "id", "code", "name" }) public class Continent { } ```