i have a column dataframe with a json array that i want to split in columns for every row.
Dataframe
FIRST_NAME CUSTOMFIELDS
0 Maria [{'FIELD_NAME': 'CONTACT_FIELD_1', 'FIELD_VALU...
1 John [{'FIELD_NAME': 'CONTACT_FIELD_1', 'FIELD_VALU...
...
Goal
I need convert the json content in that column into a dataframe
+------------+-----------------+-------------+-----------------+
| FIRST NAME | FIELD_NAME | FIELD_VALUE | CUSTOM_FIELD_ID |
+------------+-----------------+-------------+-----------------+
| Maria | CONTACT_FIELD_1 | EN | CONTACT_FIELD_1 |
| John | CONTACT_FIELD_1 | false | CONTACT_FIELD_1 |
+------------+-----------------+-------------+-----------------+