Skip to main content

data-model-design

Dimensional modeling and schema design for data products. Star schema patterns, slowly changing dimensions, denormalization decisions, and architecture decision records. Use when designing data models, reviewing schema designs, choosing between normalization strategies, or when someone asks "how should I model this data?" or "should I denormalize?" For OMOP CDM patterns specifically, see healthcare-data-domain.

Ir para a instalação

Informações da origem

Repositório
hollandkevint/data-product-operator
Última atividade na origem
20 de fevereiro de 2026 às 03:03
Idioma detectado do SKILL.md
inglês
Estrelas
3
Forks
1

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Explorador de arquivos
2 arquivos

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
name
data-model-design
version
0.1.0
description
Dimensional modeling and schema design for data products. Star schema patterns, slowly changing dimensions, denormalization decisions, and architecture decision records. Use when designing data models, reviewing schema designs, choosing between normalization strategies, or when someone asks "how should I model this data?" or "should I denormalize?" For OMOP CDM patterns specifically, see healthcare-data-domain.
user-invocable
false
## Star Schema as Default For analytics data products, default to star schema with strategic denormalization: **Fact tables** contain events at the lowest useful grain: - One row per event (transaction, visit, measurement, interaction) - Foreign keys to dimension tables - Numeric measures (amount, count, duration) - Timestamps at the grain of the analysis **Dimension tables** contain context: - Descriptive attributes for filtering and grouping - Human-readable labels alongside codes - Hierarchies for drill-down (region -> state -> city) NEVER fully denormalize into One Big Table. Many-to-many relationships cause exponential row growth. A patient with 10 conditions and 5 medications creates 50 rows instead of 15. ALWAYS start with the query patterns. What questions will consumers ask? Design the schema to make those queries simple. If 80% of queries filter by date and group by category, those should be the primary dimensions. ## Slowly Changing Dimensions (SCD) **Type 1** - Overwrite the old value. Use when history doesn't matter (correcting a typo in a name). **Type 2** - Add a new row with effective dates. Use when you need to track what was true at a point in time (patient address at time of visit, product price at time of sale). Add `effective_start_date`, `effective_end_date`, and `is_current` flag. **Type 3** - Add a column for the previous value. Use when you only need one level of history (current_category, previous_category). Default to Type 2 for any dimension where the business asks "what was it at the time of X?" Start with Type 1 for everything else and upgrade when the need emerges. ## Architecture Decision Records For every non-obvious modeling decision, write a lightweight ADR: - **Context**: What situation prompted the decision? - **Options**: What alternatives were considered? - **Decision**: What was chosen and why? - **Consequences**: What are the tradeoffs? Keep ADRs in the repo alongside the schema. Future team members will ask "why is it modeled this way?" The ADR answers before they have to ask. ## Design Validation Before building, validate with limited data: 1. Load a representative sample (1-5% of volume) 2. Run the top 10 expected queries 3. Verify results match expectations 4. Check query performance against SLA 5. Confirm grain is correct (no unexpected row multiplication) ## Source Schema Evaluation You probably won't design the OLTP schema. But you'll need to evaluate whether it's a reliable source for your data product. Quick checklist before building on a source system: - Primary keys defined and enforced (not just implied by convention) - Foreign keys constrained at the database level (not just in the application) - Indexes on FK columns (missing indexes = slow extracts) - NOT NULL on required fields (nullable everything = garbage in) - Migrations are reversible (no destructive ALTER TABLE without a rollback plan) Anti-patterns to flag immediately: - `VARCHAR(255)` on every string column (signals no thought about data types) - `FLOAT` or `DOUBLE` for money (use `DECIMAL` or integer cents) - Missing FK constraints ("the app handles it" means orphaned rows) - Dates stored as strings ("2024-01-15" in a `VARCHAR` breaks sorting and comparison) See `schema-patterns.md` for common dimensional modeling patterns.
Ver no GitHub