The "dataFormat" property is a case-insensitive string enum that defines the format of the "data" property. The default format is an array of arrays. The alternative is an array of objects. The default for "dataFormat" can be changed during a "createSession" action by assigning a different value to the "dataFormat" property in "defaultResponseOptions".
"dataFormat" in the response shows the client how the server formatted the "data" property.
- Possible values include:
-
"arrays"
- This is the default and causes the server to return results as an array of arrays, which is the most efficient.
-
"objects"
- This returns results as an array of objects. This is less efficient but is simpler to generate, read, and troubleshoot.
-
"arrays"