2021.1

Table Of Contents
l tables a list of any nested data tables in the data record, consisting of an object
with one or more name/value pairs:
l <name> the name (name) of the data table and a list the data records it
contains, consisting of an array of objects each with the following
name/value pairs:
l id a required/default fixed value of 0 for all data records (type of
number)
l fields a list of the data fields in the data record and their
corresponding data values, consisting of an object with one or more
name/value pairs:
l <name> the name (name) and data value of the data field (type of
either string, number, or boolean)
In addition, a subset of the runtime parameters defined in the template can be passed in the
following object:
l parameters a set of runtime parameter names and their corresponding values,
consisting of an object with one or more name/value pairs:
l <name> the name (name) and the value of the runtime parameter
(type of either string, number, or boolean)
Example
The following are examples of this structure:
{
"data": {
"schema": {
"columns": {
"ID": "STRING",
"Gender": "STRING",
"FirstName": "STRING",
"LastName": "STRING"
}
},
"fields": {
"ID": "CU00048376",
"Gender": "M.",
"FirstName": "Benjamin",
Page 115