Classifications
Classifications in Paradime are powered by dbt™'s meta configuration, which allows you to add custom metadata to your models, columns, sources, and other dbt™ resources. All classifications must be defined within the meta config block in your dbt™ YAML files. These classifications appear in the Paradime catalog as searchable and filterable metadata, helping with data governance and asset discovery.
Legacy vs Modern Syntax
Important: dbt™ 1.10+ requires meta configurations to be nested within config blocks. The legacy syntax shown below is deprecated and will be removed in future versions.
Deprecated (will be removed in future dbt™ versions):
models:
- name: my_model
meta: # Direct meta placement - deprecated
classification: "restricted"
columns:
- name: my_column
meta: # Direct meta placement - deprecated
pii: trueCurrent (dbt™ 1.10+ compatible):
models:
- name: my_model
config:
meta: # ✅ Meta nested in config block
classification: "restricted"
columns:
- name: my_column
config:
meta: # ✅ Meta nested in config block
pii: trueHow Classifications Appear in Paradime
Once you've added meta configurations to your dbt™ files, they appear in two key places in the Paradime catalog:
1. Search and Filter Bar
At the top of the catalog home screen, click the Classification dropdown to search and filter by any custom metadata you've added. This allows you to quickly find assets with specific classification values like sensitivity levels, data domains, or ownership information.

2. Asset Details Panel
When viewing any data asset, classifications appear in the right-side panel under the Classification section. This displays all the meta key-value pairs you've defined, such as:
is_sensitive: trueowner: JohnAny other custom metadata you've configured

Where to Set Classifications
Classifications are always defined within the meta configuration block at two levels in your dbt™ project:
Model Level Classifications
Add classifications to entire models using the meta config block in your properties file:
Column Level Classifications
Add classifications to specific columns using the meta config block within column definitions:
Common Classification Examples
Here are some typical classification patterns teams use within the meta config block:
Data Sensitivity Levels
Data Domains
Data Governance
Best Practices
Be Consistent: Use standardized classification values across your project
Document Standards: Define what each classification level means for your organization
Use Meaningful Keys: Choose descriptive meta keys that make sense to your team
Combine Classifications: Use multiple meta fields to provide rich context
Last updated
Was this helpful?