Adding Column Descriptions in dbt
📖 Scenario: You are working on a data project using dbt. Your team wants to make the data models easier to understand by adding clear descriptions to each column in the model.
🎯 Goal: You will add column descriptions to a dbt model's schema.yml file. This helps everyone know what each column means without guessing.
📋 What You'll Learn
Create a dbt model schema.yml file with a model named
ordersAdd column descriptions for the columns
order_id, customer_id, and order_dateUse the exact description texts provided in the instructions
💡 Why This Matters
🌍 Real World
In real data projects, adding column descriptions makes data models easier to understand and maintain by everyone on the team.
💼 Career
Data analysts and engineers often write and maintain dbt models with clear documentation to improve collaboration and data quality.
Progress0 / 4 steps