Skip to main content

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

PropertyTypeDescription
headersarray of stringsTable headers.
rowsarray of array of stringsData rows.

Optional properties

PropertyTypeDescription
keyColumnintegerIndex 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"
]
]
}