{% extends "_base.html" %}
{% import 'tables/_macros.html' as table_macros %}
{% block body %}
{{ table_macros.table_nav(table_id, 'overview') }}
Column |
Type |
Nullable |
{% for field in table_schema %}
{{ field.name }} |
{{ field.type }} |
{% if field.nullable %}True{% else %}False{% endif %} |
{% endfor %}
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 %}