Table
A JSON object with key/value pairs where the key represent the table and the value represent the table as an array of arrays of strings. The first array is interpreted as the headers.
Mandatory properties
| Property | Type | Description |
|---|---|---|
| headers | array of strings | Table headers. |
| rows | array of array of strings | Data rows. |
Optional properties
| Property | Type | Description |
|---|---|---|
| keyColumn | integer | Index of a column with optimized search performance. |
Example
{
"headers": [
"Product",
"Label",
"ID",
"Logo"
],
"keyColumn": 0,
"rows": [
[
"Carrot",
"Dark",
"100392006",
"vegetables"
],
[
"Cucumber",
"Light",
"100391895",
"vegetables"
],
[
"Squash",
"Dark",
"100391787",
"vegetables"
],
[
"Apple",
"Light",
"100391931",
"fruits"
],
[
"Orange",
"Dark",
"100391550",
"fruits"
]
]
}