argos/dmp-frontend/src/app/core/model/dataset/dataset-listing.ts

26 lines
519 B
TypeScript
Raw Normal View History

import { DatasetProfileModel } from './dataset-profile';
2019-01-18 18:03:45 +01:00
export interface DatasetListingModel {
2020-07-10 09:32:11 +02:00
id: string;
2019-01-18 18:03:45 +01:00
label: String;
dmp: String;
2019-04-22 12:45:36 +02:00
dmpId: String;
grant: String;
grantId: String;
grantAbbreviation: String;
profile: DatasetProfileModel;
2019-01-18 18:03:45 +01:00
dataRepositories: String;
registries: String;
services: String;
description: String;
2020-06-30 18:40:01 +02:00
status: number;
2019-01-18 18:03:45 +01:00
created: Date;
modified: Date;
finalizedAt: Date;
dmpPublishedAt?: Date;
version: number;
2020-06-30 18:40:01 +02:00
users: any[];
public: boolean;
isProfileLatestVersion: boolean;
2019-01-18 18:03:45 +01:00
}