2017-12-19 13:53:46 +01:00
|
|
|
export class SearchResult {
|
|
|
|
title: { "name": string, "accessMode": string, "sc39": string};
|
|
|
|
id:string;
|
|
|
|
DOI:string;
|
2018-07-26 18:38:59 +02:00
|
|
|
//publications & datasets & orp & organizations:
|
2017-12-19 13:53:46 +01:00
|
|
|
projects: {"funderShortname": string, "funderName": string, "acronym": string, "title": string, "code": string, "id": string}[];
|
2018-07-26 18:38:59 +02:00
|
|
|
//datasets & orp & publications
|
2017-12-19 13:53:46 +01:00
|
|
|
description: string;
|
|
|
|
year: string;
|
|
|
|
embargoEndDate: string;
|
|
|
|
authors: string[];
|
2018-07-26 18:38:59 +02:00
|
|
|
//datasets & orp:
|
2017-12-19 13:53:46 +01:00
|
|
|
publisher: string;
|
|
|
|
//dataproviders & projects:
|
|
|
|
organizations: { "name": string, "id": string}[];
|
|
|
|
//projects:
|
2018-03-16 15:54:44 +01:00
|
|
|
acronym: string;
|
|
|
|
code: string;
|
|
|
|
//funders: {"funderShortname": string, "funderName": string}[]; // not used
|
|
|
|
funderShortname: string;
|
2017-12-19 13:53:46 +01:00
|
|
|
startYear:number;
|
|
|
|
endYear:number;
|
|
|
|
//organizations:
|
|
|
|
country: string;
|
|
|
|
//dataproviders:
|
2018-03-28 16:00:42 +02:00
|
|
|
englishname: string;
|
2017-12-19 13:53:46 +01:00
|
|
|
type: string;
|
|
|
|
websiteURL: string;
|
|
|
|
OAIPMHURL: string;
|
|
|
|
compatibility: string;
|
|
|
|
countries: string[];
|
2018-03-28 16:00:42 +02:00
|
|
|
subjects: string[];
|
|
|
|
|
2018-07-26 18:38:59 +02:00
|
|
|
//publications & datasets & software & orp
|
2018-06-28 16:52:45 +02:00
|
|
|
countriesForResults: string[];
|
2017-12-19 13:53:46 +01:00
|
|
|
languages: string[];
|
2018-06-28 16:52:45 +02:00
|
|
|
|
|
|
|
//software
|
|
|
|
programmingLanguages: string[];
|
|
|
|
|
|
|
|
entityType: string;
|
2017-12-19 13:53:46 +01:00
|
|
|
types: string[];
|
|
|
|
openAccessMandate: boolean;
|
|
|
|
constructor(){}
|
|
|
|
|
|
|
|
}
|