Complete the code to add a description to a model in dbt.
models:
- name: customers
description: "[1]"Adding a description helps others understand what the model contains.
Complete the code to document a column in a dbt model.
columns:
- name: customer_id
description: "[1]"Documenting columns with clear descriptions helps users find and understand data fields.
Fix the error in the dbt schema file to make documentation discoverable.
version: 2 models: - name: orders description: "Order details" columns: - name: order_id [1]: "Unique order number"
The correct key to document columns in dbt schema files is description.
Fill both blanks to create a documented test for a column in dbt.
tests: - [1]: severity: [2]
Using not_null test with warn severity helps catch missing data without failing the run.
Fill all three blanks to create a documented source in dbt.
sources: - name: [1] description: "[2]" tables: - name: [3]
Documenting sources with clear names and descriptions helps users find original data tables.
