ThingWorx Analytics Data > Prepare Data and Metadata > Time Series Metadata Sample
Time Series Metadata Sample
The JSON sample below contains metadata for a time series dataset. This sample represents a univariate time record of a single observed quantity, measured in a physics laboratory experiment (source: http://www.comp-engine.org/timeseries/time-series_data_source/source-152/). To view a sample of time series data, see this Sample Time Series CSV File.
[
{
"fieldName": "time",
"values": null,
"range": null,
"dataType": "LONG",
"opType": "TEMPORAL",
"timeSamplingInterval": 1,
"isStatic": false
},
{
"fieldName": "laser",
"values": null,
"range": null,
"dataType": "DOUBLE",
"opType": "CONTINUOUS",
"timeSamplingInterval": null,
"isStatic": false
},
{
"fieldName": "entity",
"values": null,
"range": null,
"dataType": "STRING",
"opType": "ENTITY_ID",
"timeSamplingInterval": null,
"isStatic": false
},
{
"fieldName": "_id",
"values": null,
"range": null,
"dataType": "STRING",
"opType": "INFORMATIONAL",
"timeSamplingInterval": null,
"isStatic": false
}
]
Was this helpful?