Catalog
Last updated
Was this helpful?
Last updated
Was this helpful?
In the Command Panel within the Code IDE, view and edit your dbt™ docs without context switching. Paradime will sync changes from the UI back to your dbt™ project's .yml files with each edit, ensuring consistency across your project.
Thorough documentation is a critical component of any successful dbt™ project. Well-documented models and columns provide numerous benefits:
Knowledge Sharing: Makes your data models accessible to stakeholders across your organization
Onboarding: Helps new team members understand your data models quickly
Self-Service Analytics: Empowers business users to explore data confidently
Governance: Helps track sensitive data and ownership for compliance
Click Catalog to view and edit your dbt™ project's documentation in real time. By default, you'll see a catalog preview; expand it to utilize all catalog features.
Make your desired edits:
Model Classification
Edit existing classifications in the meta section
Add new classifications
Model Description
Type your model description manually
Use the text formatting toolbar for better readability
Alternatively, use DinoAI to autogenerate an in-depth, context-specific description
Column Details
Edit individual column descriptions
Add or modify column classifications (e.g., [primary_key, true]
)
Click Save Changes to apply your edits
When finished, commit and push your git branch
The edits you made in the UI will be reflected in the corresponding .yml
file
Model Classification
View and/or edit your model classifications (AKA tags).
You can select an existing classification or create a new one.
meta:
is sensitive: true
owner: data_team
Model Description
View and/or edit your model description. Leverage DinoAI's Autogenerate feature to create a high-quality, context-specific Business summary and Technical summary
description: >
This is the base
model for our
customer data...
Column Details
View and/or edit metadata for each column, including type, description, tests, and classification. You can select an existing classification or create a new one.
- name: customer_id
tests:
- unique:
severity: warn
- not_null:
severity: error
meta:
primary_key: true
description: >
The unique
identifier of our
customers