Merging nested JSON objects
{
"Amount": {
"Currency": "EUR",
"Value": "10.99"
},
"Valuation_Date": {
"Date": "2022-01-24"
},
"References": {
"FullRef": "CTC123456879",
"ClearRef": "123456789"
}
}{
{% for object in [Statement.Amount, Statement.Valuation_Date, Statement.References] %}
{% for key, value in object.items() %}
"{{ key }}": "{{ value }}",
{% endfor %}
{% endfor %}
}Last updated
Was this helpful?