Hello,
I'm trying to create a JSONDatasource from this sample:
```
[
{
"Header": {
"publishedDateTime": "20211110150141",
"messageId": null,
"messageType": null,
},
"Investment": {
"investmentUid": "0e06633d-6e2c-43ca-9394-00feef74e7d2",
"investmentId": "H723",
"investmentName": "H723- project"
},
"Links": [
{
"Title": "Link1",
"Content": "Link1"
},
{
"Title": "Link2",
"Content": "Link2"
}
]
},
{
"Header": {
"publishedDateTime": "20211110150141",
"messageId": null,
"messageType": null,
},
"Investment": {
"investmentUid": "3222341-6e2c-43ca-9394-00feef74e7d2",
"investmentId": "G33",
"investmentName": "G33- project"
},
"Links": [
{
"Title": "Link1",
"Content": "Link1"
},
{
"Title": "Link2",
"Content": "Link2"
}
]
}
]
```
For the requirement, i should manage to get the list of "Investments" on the creation of the base view.
Currently when i try the tuple root as:
`/JSONFile/JSONArray/Investment`
It creates null rows.
Can you enlighten us how does this tuple root works and why does it creates null rows.
Thanks