Skip to content
Diosh Lequiron
Governance6 min read

What Is a Decision Register?

A decision register records not just what was decided, but the context, alternatives, and reasoning that produced it — the institutional memory that survives leadership change.

A decision register is a structured record of significant organizational decisions — capturing not just what was decided, but the context, constraints, alternatives considered, and reasoning that produced the decision.

This is the distinction that matters most. Meeting minutes record what was said. Action logs record what will be done. Project logs record what happened. A decision register records why. It captures the reasoning at the moment it was most complete — before time obscures it, before the people who made it move on, and before the organization starts asking "why did we do it this way?" without anyone left who can answer accurately.

What a Decision Register Contains

A well-formed decision register entry has six components.

The decision itself — stated precisely. Not "we'll improve the onboarding process" but "we will replace the current five-step manual onboarding workflow with a two-step automated flow, reducing time-to-activation from 72 hours to under 4 hours."

The context — what was true at the time that made this decision necessary or appropriate. Market conditions, team capacity, technical constraints, regulatory requirements, financial limits. Context is time-sensitive; what was true in Q1 may not be true in Q3, and knowing the original context is the only way to evaluate whether a decision should be revisited.

The alternatives considered — what else was on the table and why each was set aside. This is frequently the most valuable part of the register. Knowing that option B was rejected because of cost, not because it was technically inferior, is exactly the information needed when budget conditions change.

The reasoning — the logic that connected the context and constraints to the chosen option. Not a post-hoc rationalization but the actual argument made at the time.

The conditions for revisiting — explicit triggers that should prompt re-evaluation. "If the third-party integration provider's pricing model changes, revisit this decision." Without this, decisions calcify regardless of whether they remain valid.

Who made it and when — not for blame, but for accountability and for knowing who to consult if the decision needs to be revisited.

What It Is Not

A decision register is not a meeting minutes document. Meeting minutes record attendance, discussion points, and action items. They do not, in most organizations, isolate the decision, capture the reasoning, or note the alternatives considered. A meeting that produces a significant decision will have minutes; the decision register entry is a separate artifact that extracts the decision-relevant information from the meeting record.

A decision register is not an action log. Action logs track tasks and deliverables. The decision that generated the action items belongs in the register; the action items themselves belong in the project management system.

A decision register is not a policy document. Policies govern how recurring situations should be handled. A decision register records the specific decisions — often one-time — that shaped the organization. Some decisions become policy; most are contextual.

A decision register is not a post-mortem. Post-mortems review outcomes after the fact. The decision register captures reasoning before outcomes are known, which is what makes it honest. A post-mortem written after a project succeeds will rationalize the decisions that led to success. A decision register written at the moment of decision records the actual state of knowledge at the time.

A Concrete Example

A software team needs to choose a database. They evaluate three options: PostgreSQL, MongoDB, and a managed cloud service.

A decision register entry for this choice does not say: "Chose PostgreSQL." It says:

Decision: Use PostgreSQL for the primary data store. Date: 2026-03-15. Made by: Architecture team with CTO sign-off.

Context: Our data model has 14 entity types with 23 defined relationships. The team has 4 engineers with combined 12 years of PostgreSQL experience and zero MongoDB production experience. We have a 6-week delivery constraint.

Alternatives considered: MongoDB was evaluated for its flexible schema — it would have reduced migration overhead during the data model iteration phase. We set it aside because our relationship structure is well-defined, our team expertise is absent, and the learning curve would consume the delivery buffer. A managed cloud service was evaluated for reduced operational overhead but was rejected due to cost at our expected query volume and vendor lock-in concerns at this stage.

Reasoning: PostgreSQL's strengths — normalized relational data, proven consistency guarantees, team expertise — match our requirements directly. The flexible schema advantage of MongoDB does not apply when the schema is stable.

Conditions for revisiting: If the data model shifts significantly toward document-centric structures, or if we add engineers with deep MongoDB experience and the operational advantage of managed schemas becomes meaningful, this decision should be revisited.

That is a decision register entry. "Chose PostgreSQL" is a log entry.

Why It Matters

Organizations without decision registers suffer three recurring problems.

Repeated debates. Decisions that were made, considered, and resolved get relitigated in every new team configuration. New engineers ask why PostgreSQL was chosen. New managers question the onboarding process decision. Without a record of the reasoning, the organization cannot answer "we considered that and set it aside because X" — it can only defend the status quo with authority ("this is how we do it") or relitigate the entire decision from scratch. Both are expensive.

Leadership transition loss. When the people who made the significant decisions leave, the reasoning leaves with them. The new leadership inherits a set of architectural, operational, and strategic choices whose rationale is opaque. This is not an abstract risk — it is the primary mechanism by which organizational knowledge degrades during leadership change. A decision register does not eliminate transition loss, but it makes the most important institutional knowledge explicit rather than personal.

Contradictory decisions across teams. Without a shared record of significant decisions, different teams in the same organization make contradictory choices — not because they disagree on values or goals, but because they are unaware of what each other has already decided and why. The engineering team makes an infrastructure decision that contradicts an architecture decision made six months earlier by a different team. The register surfaces the conflict; its absence allows it to accumulate silently.

Architecture Decision Records (ADRs) are a software-specific implementation of the decision register concept, commonly stored as markdown files in version control alongside the code they govern.

Phase gates create natural decision register moments — significant choices about whether to advance, hold, or reframe a phase of work deserve documentation at the level of a register entry, not just a status update.

Institutional memory is the broader concept that decision registers serve: the accumulated knowledge of an organization that makes it capable of learning over time rather than repeating the same experiments in every new configuration of people.

ShareTwitter / XLinkedIn

Explore more

← All Writing