{{ page.title }}

{{ content }} {%- for table in sorted_schema_tables %}

{{ table.name }}

{{ table.description }}

{% if table.indexes and table.indexes.size > 0 %}
Indexes {% assign col_ref = '{{ table.name }}.' %} {% for idx in table.indexes %} {% endfor %}
Columns Description Reference Name
{% assign links = "" | split: "" %} {% for col_id in idx.columns %} {% assign col_parts = col_id | replace: '#', '' | split: '.' %} {% assign link = '' | append: col_parts[1] | append: '' %} {% assign links = links | push: link %} {% endfor %} {{ links | join: ", " | raw }} {{ idx.description | default: '' }} {{ idx.name }}
{% endif %} {% for col in table.columns %} {%- endfor %}
Column Name Data Type Unit Description UCD Order Principal
{{ col.name }} {{ col.datatype }} {{ col['ivoa:unit'] | default: col['fits:tunit'] }} {{- col.description | escape }} {%- if col['ivoa:ucd'] %}{{col['ivoa:ucd']}}{% endif -%} {%- if col['tap:column_index'] %}{{col['tap:column_index']}}{% endif -%} {%- if col['tap:principal'] %}{{col['tap:principal']}}{% endif -%}
{%- endfor %} {% include _footer.html %}