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
}
13
14
export class CountryOverview {
15
  country: string;
16
  repositories: Indicator;
17
  journals: Indicator;
18
  policies: Indicator;
19
  publications: Indicator;
20
  datasets: Indicator;
21
  software: Indicator;
22
  otherProducts: Indicator;
23
}
24
25
export class Indicator {
26
  oa: number;
27
  total: number;
28
  percentage: number;
29
}