Given an internal representation that looks like this:
{
"todo": {
"data": [
{
"id": "1b361exznny",
"title": "minimal test",
"somescalar" : "valueparsed",
"somelist" : [
{ "uuid" : "lala", "lorem" : "ipsum" },
{ "uuid" : "dada", "dolor" : "sit" }
]
}
]
}
}
the value of somelist should be transformed into proper nested data values. But it's just passed-through, giving an invalid UBER output of:
{ uber:
{ version: '1.0',
data:
[ { id: '1b361exznny',
title: 'minimal test',
data:
[ { name: 'somescalar', value: 'valueparsed' },
{ name: 'somelist',
value:
[ { uuid: 'lala', lorem: 'ipsum' },
{ uuid: 'dada', dolor: 'sit' } ] } ] } ] } }
Given an internal representation that looks like this:
the value of somelist should be transformed into proper nested
datavalues. But it's just passed-through, giving an invalid UBER output of: