{
{%- if title %}
    "title": {{ title|tojson }},
{%- endif %}
{%- if items %}
    "items": [{% for item in items %}
        {% if item_template %}{% include item_template -%}
        {%- else %}{{ item.data|tojson|safe }}{% endif -%}
        {%- if not loop.last %},{% endif -%}
    {% endfor %}]
{%- endif %}
}
