Hi,
In the schema I’m working on, I would like to sum up the “price” fields from the json’s in the array “list” and assign the sum to “total”. Any pointers on how to construct the code/formula for it?
{
"total": 4.37,
"list": [
{
"name": "Miso Paste White",
"price": 63.64,
},
{
"name": "Paste White",
"price": 54.93,
},
}
Thanks you.