Is there any way to export Customer Profile attributes contained within an Array?
Simply setting up a destination and selecting a field from the array doesn't make sense and even using index notation doesn't work (and wouldn't solve our use case anyway):

Is there some work around or process for accessing these values?
For example, we create a Segment for customers who have 'checking' accounts with a balance of less than 100.
This Segment includes 2 Customer Profiles that contain the following data:
{
"id": "111",
"account": [
{
"accountNumber": "AAA1",
"accountBalance": 75,
"accountType": "checking"
},
{
"accountNumber": "AAA2",
"accountBalance": 50,
"accountType": "savings"
},
{
"accountNumber": "AAA3",
"accountBalance": 50,
"accountType": "checking"
}
]
},
{
"id": "222",
"account": [
{
"accountNumber": "BBB1",
"accountBalance": 25,
"accountType": "checking"
},
{
"accountNumber": "BBB2",
"accountBalance": 100,
"accountType": "savings"
}
]
}
If we want to create an extract that contains the customer id, accountNumber, and account Balance the data in the extract would look something like:
id | accountNumber | accountBalance
111 | AAA1 | 75
111 | AAA3 | 50
222 | BBB1 | 25
Is there any way to create an extract similar to this?
Thanks in advance for any help you can provide!