Skip to main content
Business Analysis

BRD vs FRD in Regulated Change: When to Use Which, and How Deep

April 17, 2026
BRD vs FRD in Regulated Change: When to Use Which, and How Deep

Every regulated change programme eventually produces two artefacts that sound similar, get confused in status meetings, and are written by different people with different incentives. The Business Requirements Document (BRD) and the Functional Requirements Document (FRD) are not the same document with a different name. They answer different questions, speak to different audiences, and fail in different ways.

This post is the practitioner's guide. It covers when each document is needed, how they connect, how to structure them so they survive an internal audit review, and the specific failure modes we see in financial services programmes. We write this because the first thing that goes wrong in a regulated delivery is almost always the requirements layer, and the first place auditors look is the trail from business intent to tested functionality.

Why the distinction matters in regulated industries

Outside regulated industries, teams often collapse BRD and FRD into a single "requirements" document, or skip formal requirements entirely in favour of user stories. That works when the consequence of ambiguity is a minor rework cycle. In a regulated programme, ambiguity has a different cost. If the trade surveillance system was supposed to flag suspicious activity at a 99 percent detection rate but the delivered solution misses a class of market abuse, the regulator does not accept "the requirement was unclear" as a defence.

The separation between BRD and FRD gives you two things the regulator cares about. First, a clear statement of business intent, approved by the business owner, that survives changes in the delivery team. Second, a functional specification that translates that intent into observable system behaviour that can be tested and audited. Without this separation, the trail from regulatory obligation to tested control breaks down. The BCBS 239 principles on risk data aggregation are explicit on this point: firms must demonstrate that the requirements feeding their risk reporting are documented, approved and traceable.

For a deeper foundation, our BRD/FRD documentation guide provides the full template library.

BRD: what it is and what it is not

The BRD states what the business needs and why. It is written for business stakeholders, the project sponsor, and the steering committee. It does not describe how the system will work. That is the FRD's job.

A useful BRD has five anchors:

Business problem and outcome

Lead with the business problem in one paragraph, then the target outcome measured against a baseline. "Reduce the false positive rate in transaction monitoring from 87 percent to under 25 percent while maintaining 100 percent detection of confirmed suspicious activity." That sentence is more useful than three pages of feature lists, because every downstream decision can be tested against it.

Scope boundaries

State what is in scope, what is out of scope, and what has been explicitly deferred. The deferred list is the one that matters. When scope pressure arrives at month four (and it always does), the deferred list is your contract with the business that certain items were never promised in the first place.

Business rules, not functional rules

The BRD should contain business rules that exist independently of any system. "A customer whose transaction triggers three or more high-risk flags within 30 days is escalated to Level 2 review within two business hours" is a business rule. It will be true whether implemented in the old system, the new system, or a manual process during a contingency. The FRD turns this rule into specific system behaviour.

Success criteria and measurement

Define how success will be measured before anyone writes code. Quantified success criteria tied to a measurement method and a responsible owner. "False positive rate measured monthly by the compliance analytics team using the standard regulatory sample, reported to the SMF 17 monthly" is a criterion that can be tested. "Improved efficiency" is not.

Regulatory context

Every regulated programme has a regulatory context that shapes the requirements. The BRD should explicitly name the regulations that apply (for example DORA, MIFID II, Consumer Duty), the relevant articles, and the accountable senior manager. When the regulator asks why a particular control exists, the BRD is where the answer starts.

FRD: what it is and what it is not

The FRD describes how the system will behave to meet the business requirements. It is written for the delivery team, testers, architects and the solution provider. It is not the place for business justification, commercial logic, or strategic rationale. If those belong anywhere, they belong in the BRD.

A useful FRD has four anchors:

Functional requirements expressed as observable behaviour

Every functional requirement should describe something you can observe from outside the system. "The system shall display the KYC risk score on the customer detail screen within two seconds of the screen loading" is observable. "The system shall efficiently compute the KYC risk score" is not. Observable requirements become test cases. Non-observable requirements become arguments in UAT.

Interface specifications

Interfaces are where integration failures happen. For every interface the FRD should document the data model, the field-level mappings, the error handling behaviour, the retry and idempotency semantics, and the availability commitments. For API specifications, reference an OpenAPI contract rather than describing it in prose.

Non-functional requirements anchored to the environment

Non-functional requirements are often the weakest part of an FRD. The fix is to anchor every NFR to an observable environment condition. "The system shall process 10,000 transactions per hour at p95 latency below 800 milliseconds under peak load conditions defined in the production load profile v3.2" is testable. Vague NFRs around "performance" or "scalability" are not.

Data model and data lineage

Every functional requirement that touches data needs a data section in the FRD. The data model, the lineage from source to destination, the transformation rules, and the quality thresholds. The data lineage mapping guide covers the lineage artefact in detail. For regulated reporting, the lineage from the BRD requirement through the FRD specification to the tested data field must be demonstrable.

The link between BRD and FRD: traceability

The artefact that connects the two documents is the requirements traceability matrix. Every functional requirement in the FRD traces to one or more business requirements in the BRD. Every business requirement in the BRD traces to one or more regulatory obligations. Every tested outcome traces back through the chain.

When this trace breaks, you have one of three problems. Functional requirements that do not serve a business need (goldplating). Business requirements that are not implemented (compliance gaps). Regulatory obligations that are not covered by any requirement (the gap the regulator will find first). Our post on requirements traceability matrices that survive audit explores this in depth.

Common failure modes we see in financial services

Failure mode 1: the FRD written as a second BRD

The most common failure. Business analysts who started their career writing BRDs keep writing business justification into the FRD. The result is a document that delivery teams do not read, because the business logic is buried in paragraphs of context. Fix: strip the FRD of all business justification. If a paragraph does not describe system behaviour, move it to the BRD or delete it.

Failure mode 2: the BRD written as requirements theatre

The BRD is 120 pages, contains every thought the sponsor has had about the programme, and has been approved by 14 stakeholders. It is impressive in the governance pack. It is useless as a source document, because no one can tell which paragraphs are requirements and which are narrative. Fix: separate narrative from requirements. A requirement is numbered, testable, and owned. Everything else is context.

Failure mode 3: the missing non-functional layer

The FRD covers functional behaviour beautifully. Performance, availability, security, resilience, and data retention are missing or vague. The programme goes live, the system cannot handle peak load, and the post-incident review finds that NFRs were never specified. Fix: treat NFRs as a first-class section of the FRD, with explicit ownership by the architecture and resilience functions. Under DORA, operational resilience NFRs are no longer optional for financial entities.

Failure mode 4: the BRD and FRD that do not agree on scope

The BRD says the new system covers retail and SME customers. The FRD quietly narrows scope to retail only, because the SME data model was too complex to hit the deadline. The gap is discovered in UAT. Fix: run a formal reconciliation between BRD and FRD before the FRD is baselined, and maintain the traceability matrix through every change request.

Failure mode 5: the frozen BRD and the drifting FRD

The BRD is baselined, signed off, and locked. The FRD evolves through design workshops, architecture decisions, and vendor discussions. Six months in, the FRD describes a solution that no longer matches the BRD, but no one has updated the BRD. Fix: institute a change control process that requires any FRD change that affects business intent to update the BRD, with the business owner re-approving.

When you need both, and when one is enough

Not every change needs both a BRD and an FRD. Small, low-risk enhancements can be handled with a change request and a set of user stories. Configuration changes often need only a change note and a test plan. The question to ask is about consequence and audit trail.

You need both documents when: the change affects a regulated process, the change has a material operational risk, the change involves a new vendor or third-party, the change touches the customer journey in a Consumer Duty sensitive way, or the change is part of a programme with a documented investment case above a material threshold. Your internal governance will have specific thresholds. Apply them honestly.

You can live with a lighter artefact when: the change is reversible within a short window, the change is contained within a system with strong regression coverage, the change is covered by existing business rules that remain valid, and the change does not introduce a new regulatory obligation.

For a broader view of how requirements artefacts fit into regulated delivery, see our business analysis service overview, which covers the full artefact stack including context diagrams, use cases and UAT evidence packs.

The tooling question

BRD and FRD traditionally live in Word or Confluence. Increasingly, requirements live in structured tools (Jira with requirement types, Jama, Polarion, IBM DOORS). The tool matters less than the discipline. What matters is that requirements are numbered, versioned, owned, traceable, and testable.

If you are using user stories instead of formal functional requirements, that is fine for agile delivery provided the traceability chain is preserved. The story has an acceptance criterion, the criterion maps to a business requirement, and the business requirement maps to a regulatory obligation. Our post on writing user stories for regulated industries explores how to preserve the audit trail when stories replace formal FRD sections.

The IIBA BABOK guide remains the canonical reference for the requirements discipline, and we recommend it as the baseline body of knowledge for any BA working in regulated change.

Getting the BRD and FRD right on your next programme

If you take one thing from this post: the BRD and FRD are not interchangeable, and treating them as one document is the first step on the road to an unpleasant conversation with your internal audit function. The separation exists because business intent and functional behaviour have different owners, different change cadences, and different audiences. Respect the separation and the rest of the requirements chain works.

If you want a complete template set, our BRD/FRD documentation guide provides ready-to-use structures for both documents, calibrated for financial services and tested on Tier-1 programmes. When you are ready to apply them to a live programme, our business analysis service can help you stand up the requirements discipline that gives your regulator and your delivery team what they both need.

Ready to do the structural work?

Our AI Enablement engagements are built around the five pillars in this article. We start with a focused diagnostic, then redesign one priority workflow end-to-end as proof — including the data layer, decision rights, and governance machinery.

Explore the AI Enablement service
Monthly newsletter

More like this — once a month

Get the next long-form essay on AI enablement, embedded governance, and operating-model design straight to your inbox. One considered piece per month, written for senior practitioners in regulated industries.

No spam. Unsubscribe anytime. Read by senior practitioners across FS, healthcare, energy, and the public sector.