> ## Documentation Index
> Fetch the complete documentation index at: https://aletyx.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# What is BPMN?

> BPMN (Business Process Model and Notation) is an OMG standard for modeling business processes visually as tasks, gateways, and events - portable and executable.

**BPMN (Business Process Model and Notation)** is an
[OMG](https://www.omg.org/bpmn/) standard for modeling **business processes and
workflows** visually. Where DMN and DRL decide *what* the answer is, BPMN
orchestrates *when and in what order* work happens — the sequence of **tasks,
gateways, and events** that move work through to completion.

A process is drawn as a flow that everyone can read: it **starts** with an event,
runs **tasks** (work performed by people or systems), branches at **gateways**
(decision points), and **ends** with an outcome. Because it is a portable,
vendor-neutral standard, the same diagram can be reviewed by business teams and
executed directly by a process engine.

<Frame caption="A simple BPMN process: an application is received, reviewed, and routed by a gateway to an approved or declined outcome.">
  <img src="https://mintcdn.com/aletyx-3353d50c/ONJZgSHm4m5typWw/images/bpmn-editor-sample.svg?fit=max&auto=format&n=ONJZgSHm4m5typWw&q=85&s=1251b2c34d28889de24fa43d3da16e7a" alt="BPMN example showing a start event, a review task, an exclusive gateway, and approved or declined end events" className="block dark:hidden" width="1558" height="609" data-path="images/bpmn-editor-sample.svg" />

  <img src="https://mintcdn.com/aletyx-3353d50c/8C2bz8uAU-JqTpba/images/bpmn-editor-sample-dark.svg?fit=max&auto=format&n=8C2bz8uAU-JqTpba&q=85&s=62e1287c6fd5a94d5c4c8b0be3f00bc3" alt="BPMN example showing a start event, a review task, an exclusive gateway, and approved or declined end events" className="hidden dark:block" width="1558" height="609" data-path="images/bpmn-editor-sample-dark.svg" />
</Frame>

In practice, BPMN and DMN work together: the process (BPMN) calls out to a
decision (DMN or DRL) at a gateway, then continues based on the answer.

## Where to go next

<CardGroup cols={2}>
  <Card title="DMN, DRL, BPMN" icon="scale-balanced" href="/docs/faq/concepts/dmn-drl-bpmn">
    How BPMN compares to DMN and DRL, and when to use each.
  </Card>

  <Card title="Process Automation" icon="diagram-project" href="/docs/architecture/processes/overview">
    How processes are modeled and executed in the Aletyx architecture.
  </Card>

  <Card title="BPMN Basics" icon="book-open" href="/docs/architecture/processes/basic-bpmn/overview">
    The core BPMN building blocks: tasks, gateways, and events.
  </Card>

  <Card title="Gateways" icon="diagram-project" href="/docs/architecture/processes/basic-bpmn/gateways">
    How gateways branch a process based on decisions.
  </Card>

  <Card title="BPMN Examples" icon="play" href="/docs/guides/tutorials/bpmn-example">
    Worked BPMN examples you can learn from and adapt.
  </Card>

  <Card title="BPMN Playground" icon="play" href="/docs/components/playground/bpmn-tutorial">
    Build and run BPMN processes interactively in the Aletyx Playground.
  </Card>
</CardGroup>
