Flowchart
A simple sequence diagram of activities and decisions, drawn with rectangles, diamonds, and arrows.
The original general-purpose process notation, standardised in ISO 5807. Activities are rectangles, decisions are diamonds, terminators are ovals, and flow is arrows. Flowcharts are atomic — one swimlane, one perspective — which makes them ideal for the first pass at understanding a procedure before deciding whether more rigour (BPMN, swimlanes) is warranted.
Question it answers
What are the steps and decisions in this procedure?
- • Sketching a procedure for the first time with a single subject-matter expert.
- • Documenting a short, mostly-linear sequence (≤ 15 steps).
- • Training material where the audience is non-technical.
- • Multi-actor processes with hand-offs — a swimlane is clearer.
- • Anything requiring events, messages, or compensations — use BPMN.
- • Complex branching with > 3 decision diamonds in a row — refactor into a decision table.
BA example: A new BA at an insurer maps the claim-intake call script as a flowchart on a single A4 to onboard themselves before joining the redesign workshop.
- • Using a diamond as a routing node rather than a yes/no question.
- • Mixing levels of detail — UI clicks alongside business decisions.
- • Skipping the terminator, leaving readers unsure where the process ends.
Deep dive · 12 sections + practice
Deep learning module
A boxes-and-arrows picture of the steps in a process, with diamonds for decisions.
Problem solved: When stakeholders disagree on 'how this actually works', a flowchart pins down the actual sequence and decision points so reasoning becomes shared rather than tribal.
Related