Add streaming values
- Last UpdatedAug 19, 2026
- 1 minute read
Use a create operation to add streaming data values to an existing container. Each value includes a timestamp and one or more property values defined by the container's streaming data type. A single message can contain multiple timestamped records, allowing applications to efficiently transmit batches of time-series data.
The following example adds timestamped values to an existing measurement container:
omfversion: 2.0
messagetype: instance
action: create
messageformat: json
{
"streamingdata": [
{
"id": "Tank-101.Measurements",
"values": [
{
"Timestamp": "2026-07-17T22:31:00Z",
"Pressure": 458.2,
"Temperature": 27.7,
"ValveState": 0
},
{
"Timestamp": "2026-07-17T22:32:00Z",
"Pressure": 451.6,
"Temperature": 27.8,
"ValveState": 0
}
]
}
]
}