2020-02-07 14:05:07 +01:00
|
|
|
export class Project {
|
|
|
|
funderShortname: string;
|
|
|
|
funderName: string;
|
|
|
|
acronym: string;
|
|
|
|
title: string;
|
|
|
|
code: string;
|
|
|
|
id: string;
|
|
|
|
}
|
2018-10-23 15:11:25 +02:00
|
|
|
|
2020-02-07 14:05:07 +01:00
|
|
|
export class Author {
|
|
|
|
fullName: string;
|
|
|
|
orcid: string;
|
|
|
|
}
|
2018-03-28 16:00:42 +02:00
|
|
|
|
2020-02-07 14:05:07 +01:00
|
|
|
export class ResultTitle {
|
|
|
|
name: string;
|
|
|
|
accessMode: string;
|
|
|
|
sc39: string;
|
|
|
|
}
|
2018-10-23 15:11:25 +02:00
|
|
|
|
2020-02-07 14:05:07 +01:00
|
|
|
export class Organization {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2020-02-07 14:05:07 +01:00
|
|
|
export class SearchResult {
|
|
|
|
title: ResultTitle;
|
|
|
|
id: string;
|
|
|
|
DOI: string;
|
|
|
|
|
|
|
|
//publications & datasets & orp & software & organizations:
|
|
|
|
projects: Project[];
|
|
|
|
|
|
|
|
//datasets & orp & publications & software
|
|
|
|
description: string;
|
|
|
|
year: string;
|
|
|
|
embargoEndDate: Date | string;
|
|
|
|
authors: Author[];
|
|
|
|
countriesForResults: string[];
|
|
|
|
languages: string[];
|
|
|
|
|
|
|
|
//datasets & orp & software:
|
|
|
|
publisher: string;
|
|
|
|
|
|
|
|
//software
|
|
|
|
programmingLanguages: string[];
|
|
|
|
|
|
|
|
//dataproviders & projects:
|
|
|
|
organizations: Organization[];
|
|
|
|
|
|
|
|
//projects:
|
|
|
|
acronym: string;
|
|
|
|
code: string;
|
|
|
|
funderShortname: string;
|
|
|
|
startYear: number;
|
|
|
|
endYear: number;
|
|
|
|
openAccessMandatePublications: boolean;
|
|
|
|
openAccessMandateDatasets: boolean;
|
|
|
|
|
|
|
|
//organizations:
|
|
|
|
country: string;
|
|
|
|
|
|
|
|
//dataproviders:
|
|
|
|
englishname: string;
|
|
|
|
type: string;
|
|
|
|
websiteURL: string;
|
|
|
|
OAIPMHURL: string;
|
|
|
|
compatibility: string;
|
|
|
|
compatibilityUNKNOWN: boolean;
|
|
|
|
countries: string[];
|
|
|
|
subjects: string[];
|
|
|
|
|
|
|
|
entityType: string;
|
|
|
|
types: string[];
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
}
|
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|