What would be the correct approach to break a field representing a json array into new data fields representing the various component elements?
For instance I have a field that contains the following data.
[{"id": "8b55e1b8-5c8a-40ac-81d9-ce0e0e46a044","type":"team"},{"id":"4e0f58af-6f41-4449-gf7e-a38a41684e1c","type":"user"}]
I want this broken out into new nested fields like so.
data.0.id
data.0.type
data.1.id
data.1.type
Regards