> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paradime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# dbt™ assets

> The Paradime Data Catalog detail view for dbt™ assets: Overview and coverage, Columns, Code (source and compiled SQL), Lineage, and Quality tests.

Your dbt™ project is the core of the catalog. Every resource type is indexed with metadata from your `.yml` files, your compiled SQL, and your warehouse information schema. Which tabs an asset shows depends on its type.

| Resource                | Tabs                                                      |
| ----------------------- | --------------------------------------------------------- |
| **Model**               | Overview, Columns, Code, Lineage, Quality                 |
| **Source**              | Overview, Columns, Lineage, Quality (including freshness) |
| **Seed** / **Snapshot** | Overview, Columns, Lineage, Quality                       |
| **Test**                | Overview, Lineage                                         |
| **Macro**               | Overview, Arguments, Code, Lineage                        |
| **Analysis**            | Overview, Code, Lineage                                   |
| **Exposure**            | Overview, Lineage                                         |

## Overview

The Overview tab summarizes the asset: its description, ownership (Owner, Group, Tags), materialization, and last run. For models it also shows **coverage** as two progress bars, **Tests** and **Docs**, so you can see at a glance how well an asset is tested and documented. From a model you can also click **Explore in Radar** to monitor it over time.

## Columns

The Columns tab lists every column, with a **Search columns** box for wide tables. Each column shows:

* its **name** and **data type** (for example `NUMBER`, `TEXT`, `TIMESTAMP_TZ`);
* its **description**, from your dbt™ docs;
* **test badges** for the data tests defined on it (for example `not_null`, `unique`), which link to the Quality tab;
* any **classifications** (`meta` key-value pairs). See [Classifications](/products/data-catalog/asset-details/classifications).

Nested (`STRUCT`) columns expand to reveal their child fields and types.

## Code

The Code tab shows the SQL behind a model, with a toggle between:

* **Source**: the raw model code, including Jinja such as `{{ source(...) }}` and `{{ ref(...) }}`.
* **Compiled**: the SQL after dbt™ resolves macros and references, which is what runs against your warehouse.

The code is syntax-highlighted, with **copy** and **fullscreen** controls. Macros also show an **Arguments** tab listing each argument's name, type, and description.

## Lineage

The Lineage tab shows the asset's upstream and downstream dependencies. See the [Lineage](/products/data-catalog/lineage/index) section for the full graph and list views, node-type filters, depth controls, and CSV export.

## Quality

The Quality tab is the data-quality record for the asset: every test defined on it, and how each did on its last run. The header summarizes health (for example `4 passed`), and a **Search tests** box filters the list. Each test shows:

* its **status** (pass, warn, fail, or not-run);
* the **test name** and the **column** it applies to;
* **impacted rows** flagged on the last run;
* the **last run** time.

For sources, the Quality tab also reflects dbt™ **source freshness**. Tests defined but not yet run appear as not-run. Test results come from your [Bolt](/products/bolt/index) runs; to monitor quality trends and get alerted on failures, use [Radar](/products/radar/index).

<Info>
  Undocumented assets are hard to trust. You can fill documentation gaps by [auto-generating descriptions with DinoAI](/products/dino-ai/copilot/auto-generate-documentation), which writes back to your `.yml` files.
</Info>


## Related topics

- [Asset Details](/products/data-catalog/asset-details/index.md)
- [Catalog Tool](/products/dino-ai/tools-and-features/catalog-tool.md)
- [Translating Key Terms](/guides/migrations/dbt-cloud-tm-importer/translation-of-key-terms.md)
- [Lightdash](/products/data-catalog/asset-details/lightdash.md)
- [Trigger Bolt schedules from Dagster](/products/bolt/external-triggers/dagster.md)
