Overview
Model Reviews and Modelling Standards
Naming conventions, review cadence, model registry — the boring discipline that compounds.
Why it matters
Every model is read 10× more than written. Naming + standards are the lowest-cost, highest-leverage discipline DMBOK names. Skip them and every new joiner pays the comprehension tax.
Going deeper
The smallest standards pack that actually moves the needle:
- Naming — snake_case, singular nouns, no abbreviations except an enterprise abbreviation list (≤ 30 entries).
- Keys — surrogate
id BIGINTPK on every entity; natural keys in aUNIQUEconstraint, not the PK. - Timestamps —
created_at,updated_at,deleted_at(soft-delete), UTC. - Review — every model change reviewed by a steward + reasoner / linter; approved before merge.
- Registry — a single searchable place where the current model lives (dbt docs, Atlan, DataHub).
A team that ships these five wins back 20–30 % of analyst onboarding time. There is no cheaper governance investment.