I have a Dataframe in the below format. I am trying to break this into different rows for each key value pair.
id, data
101, [{'field': 'type1', 'newValue': '2020-01-16T12:35:50Z', 'oldValue': None},
{'field': 'status', 'newValue': 'Started', 'oldValue': None}]
Expected output:
id, field, newValue, oldValue
101, type1, 2020-01-16T12:35:50Z, None
101, status, Started, None