Decompression and parsing of data
The Data
byte array may be compressed using the gzip
algorithm. Once decompressed, it is a CBOR container containing a collection of MeasurementComponentMetaTuple
objects.
Steps to parse the data
Decompress the
Data
byte array (ifCompression
is not"none"
).Deserialize the decompressed data using a CBOR parser.
Interpret the data based on the
Format
value. For now, this is always a collection ofMeasurementComponentMetaTuple
.
Last modified: 29 January 2025