I complicated json structure ie:
{
"products": [
{
"id": "1234567890",
"productType": {
"name": "XYZ"
},
"masterData": {
"current": {
"masterVariant": {
"assets": [],
"images": [
{
"url": "https://www.nieuwkoopimages.com/images/123456.png",
"dimensions": {
"w": 0,
"h": 0
}
}
]
}
}
}
}
]
}
I need to export this to csv file. Is it possible to do it in automated way ? that will generate for example columns: products.id, products.productType.name, products.masterData.curent etc etc
? thanks!