DISCOVERY & PLANNING · LESSON 02.04beginner

Scope definition + WBS.

Decompose the work until each leaf is something a person can finish.

↳ tl;dr

A Work Breakdown Structure (WBS) is a hierarchical decomposition of the project deliverables. PMI adopted it in 1987. It's the answer to "what is the work, exactly?" — and it's the foundation everything else (estimates, schedule, tracking) is built on.

What it is, what it isn't

A WBS is deliverable-oriented. Each node is a thing you'll produce, not a task you'll do. "Patient Handoff Module — UI" is a WBS node; "design the UI" is not. Tasks come from decomposing each leaf during scheduling.

The 100% rule

PMI's WBS Practice Standard: each level of the WBS must contain 100% of the work — no more, no less. If you decompose a parent into children, those children together must equal the parent. This sounds obvious until you're three levels deep and someone tries to add a thing that doesn't ladder up.

the work-package rule

Decompose until each leaf — a work package — is small enough that one person or pair can own it for a sensible duration. Common heuristic: 8–80 hours of work, or the famous "two week" rule.

Hierarchy example

LevelItem
1.0Patient Handoff Module
1.1 UI
1.1.1 Login screen
1.1.2 Handoff list view
1.2 API
1.2.1 Auth endpoints
1.2.2 Handoff CRUD endpoints
1.3 Database migration
1.4 Compliance + sign-off

in the wild

The WBS feels like overhead until the project hits week 8 and someone asks, "wait, who owns the migration script?" The team that has a WBS knows in 30 seconds. The team without one spends a meeting figuring it out.

// sources

Sources cited

  1. [01]
  2. [02]
    A Guide to the Project Management Body of Knowledge (PMBOK Guide), 7th Edition

    Project Management Institute (PMI) · 2021 · retrieved 2026-04

    PMI's flagship reference. 7e shifted from process groups to performance domains.

// sources

Further reading

  1. [01]
  2. [02]
    A Guide to the Project Management Body of Knowledge (PMBOK Guide), 7th Edition

    Project Management Institute (PMI) · 2021 · retrieved 2026-04

    PMI's flagship reference. 7e shifted from process groups to performance domains.