You can merge them into a flat one using the following code snipped:
{
{% for object in [Statement.Amount, Statement.Valuation_Date, Statement.References] %}
{% for key, value in object.items() %}
"{{ key }}": "{{ value }}",
{% endfor %}
{% endfor %}
}