I would like to convert the long-string to an array to access detail inside. In my case, the string is like below
'[{"timestamp": 1567814400033, "fair_value": 0.01641267}, {"timestamp": 1567814400141, "fair_value": 0.01641273}]'
Desired result would be single array where contain dicts inside like this
[{"timestamp": 1567814400033, "fair_value": 0.01641267}, {"timestamp": 1567814400141, "fair_value": 0.01641273}]
Thank for your help!
