{% if schema.fields and data %}
{% for field in schema.fields %}
{{ field.name }}
{{ field.type | upper }}
{% endfor %}
{% for row in data %}
{% for cell in row %}
{{ cell if cell is not none else '' }}
{% endfor %}
{% endfor %}
{% else %}
No Data Available
This dataset returned no results.
{% endif %}