Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.5 KB

File metadata and controls

41 lines (34 loc) · 1.5 KB

Dataset

Dataset object

Properties

Name Type Description Notes
id string [default to undefined]
name string [default to undefined]
description string [optional] [default to undefined]
organizationId string the associated Organization Id [readonly] [default to undefined]
workspaceId string the associated Workspace Id [readonly] [default to undefined]
tags Array<string> the list of tags [default to undefined]
additionalData { [key: string]: any; } Free form additional data [optional] [default to undefined]
parts Array<DatasetPart> [default to undefined]
createInfo DatasetEditInfo The details of the Dataset creation [default to undefined]
updateInfo DatasetEditInfo The details of the Dataset last update [default to undefined]
security DatasetSecurity [default to undefined]

Example

import { Dataset } from '@cosmotech/api-ts';

const instance: Dataset = {
    id,
    name,
    description,
    organizationId,
    workspaceId,
    tags,
    additionalData,
    parts,
    createInfo,
    updateInfo,
    security,
};

[Back to Model list] [Back to API list] [Back to README]