Project

General

Profile

1
export class OverviewData {
2
  overview: OverviewIndicators;
3
  countries: CountryOverview[];
4
}
5

    
6
export class OverviewIndicators {
7
  publications: Indicator;
8
  datasets: Indicator;
9
  repositories: Indicator;
10
  journals: Indicator;
11
  policies: Indicator;
12
  software: Indicator;
13
  otherProducts: Indicator;
14
  funders: Indicator;
15
  ecFundedOrganizations: Indicator;
16
}
17

    
18
export class CountryOverview {
19
  country: string;
20
  repositories: Indicator;
21
  journals: Indicator;
22
  policies: Indicator;
23
  publications: Indicator;
24
  datasets: Indicator;
25
  software: Indicator;
26
  otherProducts: Indicator;
27
  funders: Indicator;
28
  ecFundedOrganizations: Indicator;
29
}
30

    
31
export class Indicator {
32
  oa: number;
33
  total: number;
34
  percentage: number;
35
}
(3-3/6)