Tables
Tables in LabTwin are a grid like data structure.
Data Structure
Tables are basically two-dimensional data structures. They can resemble Excel spreadsheets. Columns are identified with English letters starting from A and rows are identified with ordinal numbers starting from 1.
In addition to row and column identifiers, you can set custom titles for rows and columns. This information is stored in metadata section of the table response.
1) Table Metadata: Contains row and column titles. Two arrays with zero-based index. 2) Table Data: Contains actual table data. 2-D matrix and all cells are in string data type.
Updating table data
The illustration below shows how the requests are mapped to table cells.