Есть аннотация под названием @JsonInclude
, принимающая различные конфиги.
В вашем случае это будет:
@JsonInclude(JsonInclude.Include.NON_EMPTY)
List<Integer> stores
Javado c говорит:
NON_EMPTY
Value that indicates that only properties with null value,
or what is considered empty, are not to be included.