{% if table_noschema != 'true' %}
type: {{entity.getTypeName()}}
field:
{% for field in entity.getFields() %}
{{field.jsonValue()}}
{% endfor %}
{% endif %}
{% if table_noschema != 'true' %} {% endif %}
{% set rows = entity.take(100) %}
Showing {{rows|length}} of {{entity.count()}}
{% for field in entity.getFields() %} {% if not table_hidecols or field.name not in table_hidecols %}
{{field.name | decodeUTF8 }}
{% endif %} {% endfor %}
{% for field in entity.getFields() %} {% if not table_hidecols or field.name not in table_hidecols %} {% endif %} {% endfor %} {% for row in rows %} {% for field in entity.getFields() %} {% if not table_hidecols or field.name not in table_hidecols %} {% endif %} {% endfor %} {% endfor %}
{{field.name | decodeUTF8 }}
{{row[field.name]}}