type: table
Multi-column table answer. values holds one array per row, with cells in the same order as headers.
integrationKeystring
Example:
measurementResultstypestring
Possible values: [table]
Example:
tableheadersstring[]
Column names, in column order. Returned only for table answers.
Example:
["size","spec","actual"]valuesobject[][]
Rows of the table.
Example:
[["S","10cm","10.1cm"],["M","12cm","12.3cm"]]type: table
{
"integrationKey": "measurementResults",
"type": "table",
"headers": [
"size",
"spec",
"actual"
],
"values": [
[
"S",
"10cm",
"10.1cm"
],
[
"M",
"12cm",
"12.3cm"
]
]
}