Data selection example
- Last UpdatedSep 01, 2026
- 1 minute read
The following are examples of valid Structured Data Files data selection configurations:
Structured Data Files data selection configuration example with custom IndexFormat
[
{
"selected": true,
"name": "Name",
"streamId": "StreamId",
"valueField": "Pressure",
"indexField": "PressureTimeStamp",
"indexFormat": "mm/dd/yy",
"dataType": "Int16"
}
]
Structured Data Files data selection configuration example with complex data
Example complex data (CSV file with header):
timestamp, lat, long, x_col, y_col, z_col
2021-09-12, 15.294533, 20.479839, 1.1, 2.2, 3.3
2021-09-12, 36.33403, -82.4019478, 4.1, 5.2, 6.3
Example data selection configuration for complex data:
[
{
"selected": true,
"name": "Name_XYZ",
"streamId": "StreamId_XYZ",
"valueField": null,
"dataFields": {
"X": "x_col",
"Y": "y_col",
"Z": "z_col"
},
"indexField": "timestamp",
"DataType": "COORDINATES"
},
{
"selected": true,
"name": "Name_LatLong",
"streamId": "StreamId_LatLong",
"valueField": null,
"dataFields": {
"latitude": "lat",
"longitude": "long"
},
"indexField": "timestamp",
"DataType": "GEOLOCATION"
}
]
Structured Data Files data selection configuration example with unselected item
[
{
"selected": false,
"name": "Name",
"streamId": "StreamId",
"valueField": "FanSpeed",
"indexField": "FileCreationTime",
"dataType": "Int32"
}
]