Flowchart
Decision Tree Flow
Map choices, review paths, and outcomes with a Mermaid decision tree flowchart that is ready to edit.
Use Cases
Compare possible paths before choosing an execution route
Show how value, risk, or priority changes a workflow
Turn a policy or rubric into a visual decision model
Document branching support, sales, compliance, or product review criteria
How This Workflow Works
| Step | Purpose |
|---|---|
| New request | Introduces the item being evaluated, such as a proposal, ticket, opportunity, or policy case. |
| High-value check | Separates work that needs senior attention from items that can follow a lower-touch route. |
| Senior review | Adds expert or leadership review before higher-risk work is approved, rejected, or revised. |
| Automated handling | Shows the fast path for routine cases that do not need manual review or special judgment. |
| Launch path | Represents the final execution route once the decision tree has selected an approved outcome. |
How To Customize
Change the decision labels to your own criteria
Add outcome nodes for each branch you need to evaluate
Use edge labels to make the conditions explicit
Add scoring thresholds, approval roles, or risk levels to each decision branch
Replace generic outcomes with the actions your team actually takes
Edit This Template Visually
Open this template in the editor to work from the rendered diagram and the Mermaid source together. Click a node in supported flowchart and sequence diagrams to locate the matching code, select source lines to find the related shape, or ask AI to rename, expand, restyle, or rewrite the selected part of the workflow.
Mermaid Source
flowchart TD
request[New request] --> score{High value?}
score -->|Yes| review[Senior review]
score -->|No| automate[Automated handling]
review --> approve{Approved?}
approve -->|Yes| launch[Launch path]
approve -->|No| revise[Revise proposal]
automate --> launch