Dataset part object
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | [default to undefined] | |
| name | string | [default to undefined] | |
| sourceName | string | the source data name (e.g. filename associated to the dataset part) | [default to undefined] |
| description | string | [optional] [default to undefined] | |
| tags | Array<string> | [default to undefined] | |
| additionalData | { [key: string]: any; } | Free form additional data | [optional] [default to undefined] |
| type | DatasetPartTypeEnum | [default to undefined] | |
| organizationId | string | the associated Organization Id | [readonly] [default to undefined] |
| workspaceId | string | the associated Workspace Id | [readonly] [default to undefined] |
| datasetId | string | the associated Dataset Id | [readonly] [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] |
import { DatasetPart } from '@cosmotech/api-ts';
const instance: DatasetPart = {
id,
name,
sourceName,
description,
tags,
additionalData,
type,
organizationId,
workspaceId,
datasetId,
createInfo,
updateInfo,
};