I am importing some JSON data into AWS QuickSight. It does some flattening of the file as described here:
Here is a simplified example of what I am importing:
{
"contact":{
"id":"1",
"level2":[
{
"name":"test"
}
]
}
}
The field id
is imported with the name contact.id
. However the field level2
is ignored, I presume this is because QuickSight will not flatten a nested array, although there are no error messages to confirm this.
Does anyone have any idea how I can import this data? I have considered using jsonParse
to create a calculated field, however I can cannot even address the contact
field, let alone the contact.level2
field.