To support better error messages, we need to detect if a resource is tabular. This could be done with a `is_tabular()` function (Data Package v1 only). ```mermaid flowchart LR a["profile: tabular-data-resource"] --> tabular b["mediatype: text/csv"] --> tabular c["mediatype: application/gzip"] --> tabular? d[else] --> not_tabular ```
To support better error messages, we need to detect if a resource is tabular. This could be done with a
is_tabular()function (Data Package v1 only).flowchart LR a["profile: tabular-data-resource"] --> tabular b["mediatype: text/csv"] --> tabular c["mediatype: application/gzip"] --> tabular? d[else] --> not_tabular