Project

General

Profile

1 57592 stefania.m
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 57893 stefania.m
  software: Indicator;
13
  otherProducts: Indicator;
14
  funders: Indicator;
15
  ecFundedOrganizations: Indicator;
16 57592 stefania.m
}
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 57893 stefania.m
  funders: Indicator;
28
  ecFundedOrganizations: Indicator;
29 57592 stefania.m
}
30
31
export class Indicator {
32
  oa: number;
33
  total: number;
34
  percentage: number;
35
}