I am trying to parse json data which has nested objects.
Below is the sample data
{"Time Series (30min)": { "2018-10-16 16:00:00": { "1. open": "15.4700", "2. high": "15.5300", "3. low": "15.4500", "4. close": "15.5000", "5. volume": "1521981" }, "2018-10-16 15:30:00": { "1. open": "15.4600", "2. high": "15.4950", "3. low": "15.4400", "4. close": "15.4700", "5. volume": "397948" }}}
I know how to parse son arrays with decodable structs, but not sure how to do the same with this kind of data