Dataset object
| 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] |
import { Dataset } from '@cosmotech/api-ts';
const instance: Dataset = {
id,
name,
description,
organizationId,
workspaceId,
tags,
additionalData,
parts,
createInfo,
updateInfo,
security,
};