{{ 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 }}.' %}
Columns
Description
Reference Name
{% for idx in table.indexes %}
{% 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 }}
{% 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 -%} |