I'm not able to model a nested JSON data in Google Data Studio. I have the problem exactly in the "addresses" field.
The JSON Data:
{
"data": [
{
"id": 37314,
"first_name": "Lio",
"last_name": "Mino",
"addresses": [
{
"id": 7834,
"city": "Washington",
"primary": 1,
},
{
"id": 5034,
"city": "New yourk",
"primary": 1,
}
]
},
...
]
}
Without the addresses
field all work fine. But i need to returned addresses also.
I hope I explained the situation well.