{% extends "_base.html" %} {% import 'tables/_macros.html' as table_macros %} {% block body %} {{ table_macros.table_nav(table_id, 'overview') }}
Schema
{% for field in table_schema %} {% endfor %}
Column Type Nullable
{{ field.name }} {{ field.type }} {% if field.nullable %}True{% else %}False{% endif %}
Metadata
URI {{ table_metadata.uri }}
Format {{ table_metadata.table_format.value }}
ID {{ table_metadata.id }}
Version {{ table_metadata.version }}
Name {{ table_metadata.name }}
Description {{ table_metadata.description }}
Created at {{ table_metadata.created_at }}
Partitions {{ table_metadata.partitions }}
Configuration {{ table_metadata.configuration }}
{% endblock %}