The Data Table Entity
DataTable
Catalytic.SDK.Entities.DataTable
The Data Table entity contains metadata about Data Tables stored in the Catalytic platform. Data Tables can be created within Workflows, or directly via uploading a CSV or Excel-formatted spreadsheet file.
Common Properties
These are the most commonly used properties of a DataTable
.
Name | Type | Description |
---|---|---|
Id | Guid | The unique ID of the Data Table |
Name | string | The name of the Data Table |
Columns | List<DataTableColumn> | The Columns in the Data Table |
Type | DataTableType | Imported , Master , Application , Instance or Batch |
Visibility | TableVisibility | Open or Restricted |
DataTableColumn
Catalytic.SDK.Entities.DataTableColumn
The Data Table Column entity contains metadata about each column in a Catalytic Data Table.
Common Properties
These are the most commonly used properties of a DataTableColumn
.
Name | Type | Description |
---|---|---|
Id | Guid | The unique ID of the Data Table Column |
Name | string | The name of the Column |
Type | FieldType | The type of data held in the column. See Instances |
Restrictions | FieldRestrictions | May include a set of string Choices for SingleChoice and MultipleChoice fields. |
Updated about 4 years ago