Bronze, Silver, Gold layers in data engineering

By Pradyumna Chippigiri

June 16, 2026


TIL: Medallion Architecture is a layered way to organize data pipelines so data quality improves step by step.

What is Medallion Architecture?

It is a pattern where data moves through 3 layers:

Simple idea: do not jump directly from raw to dashboards. First keep raw, then clean, then model for analytics.

1) Bronze layer (raw)

Bronze stores source data as-is with minimal transformation.

Typical characteristics:

Think of this as your "ground truth landing zone."

Small example (Bronze):

order_id=101, user_id=42, amount="1999", created_at="2026-06-16T10:11:12Z", source="mobile-app"
order_id=101, user_id=42, amount="1999", created_at="2026-06-16T10:11:12Z", source="mobile-app"  (duplicate)

2) Silver layer (refined)

Silver is where data quality improvements happen.

Typical operations:

At this stage, data is trustworthy enough for most internal analytics and feature prep.

Small example (Silver):

order_id=101, user_id=42, amount=1999.00, created_date=2026-06-16, channel="mobile"

3) Gold layer (curated/business)

Gold is optimized for consumption by BI tools, reports, and product metrics.

Typical operations:

Gold should be stable, easy to query, and aligned with business definitions.

Small example (Gold):

date=2026-06-16, channel="mobile", total_orders=12450, total_revenue=24500000

This is now directly usable in dashboards/KPI reporting.

Why this model works well

Quick mental model

Raw events/files -> Bronze -> Silver -> Gold -> BI/ML/Apps

That is the core of Bronze/Silver/Gold in data engineering.