countsByYear property

  1. @JsonKey(name: 'counts_by_year')
List<CountByYear>? countsByYear
getter/setter pair

Works.cited_by_count for each of the last ten years, binned by year. To put it another way: each year, you can see how many times this work was cited. Any citations older than ten years old aren't included. Years with zero citations have been removed so you will need to add those in if you need them.

Implementation

@JsonKey(name: 'counts_by_year')
List<CountByYear>? countsByYear;