I have a json array in the structure
[{"name":"A","content":"X"},{"name":"B","content":"Y"},{"name":"C","content":"Z"}]
how do I extract it as the name/content (key/value) pair so that end up with a feature containing the following attributes:
A: X
B: Y
C: Z
In the actual data there are about 40 attributes, so an automatic flatenning of some sort would be prefered.