I have a 3rd party IoT device that does not adhere to general web standards well. One hurdle I can’t seem to overcome is how they publish the individual data elements. I’ve included a snippet of the data stream below. Is there any way to use the built-in deserializers to intelligibly parse the data? Ideally I’d treat this as an array of Dictionary<string, List<int>>
or some such.
"data" : {
"20170127001500" : [0,0,0,0],
"20170127003000" : [0,0,0,0],
"20170127004500" : [0,0,0,0],
"20170127010000" : [0,0,0,0],
"20170127011500" : [0,0,0,0],
....
}