Please ensure Javascript is enabled for purposes of website accessibility
Powered by Zoomin Software. For more details please contactZoomin

Open Message Format (OMF)

Delete selected streaming values

  • Last UpdatedAug 19, 2026
  • 1 minute read

Use a delete operation to remove specific streaming data values from an existing container. Instead of deleting all data in the container, you can target individual values by timestamp, allowing erroneous, duplicate, or no longer needed records to be removed while preserving the remaining data.

The following example identifies individual streaming values for deletion by supplying their index property values.

omfversion: 2.0

messagetype: instance

action: delete

messageformat: json

{

"streamingdata": [

{

"id": "Tank-101.Measurements",

"indexes": [

"Timestamp"

],

"values": [

{

"Timestamp": "2026-07-17T22:30:00Z"

},

{

"Timestamp": "2026-07-17T22:31:00Z"

}

]

}

]

}

Related Links