> ## 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 DMN?

> DMN (Decision Model and Notation) is an OMG standard for modeling business decisions visually with decision tables and FEEL - portable and directly executable.

**DMN (Decision Model and Notation)** is an [OMG](https://www.omg.org/dmn/)
standard for modeling business decisions visually. Instead of burying logic in
code, you describe **what the decision is, what inputs it needs, and how the
inputs map to outcomes** — using decision tables and boxed expressions written in
FEEL (Friendly Enough Expression Language).

Because it is a portable, vendor-neutral standard, the same DMN model can be read
by business analysts, validated by compliance teams, and executed directly by an
engine — no translation step between the diagram and the running logic.

A DMN model usually has two parts: a **Decision Requirements Diagram (DRD)** that
shows which inputs feed which decisions, and a **decision table** that spells out
the rules.

<Frame caption="A simple DMN model: the Applicant Data input feeds a Loan Eligibility decision, whose rules live in a decision table.">
  <img src="https://mintcdn.com/aletyx-3353d50c/ofr1TVSA8RUT0-Zd/images/dmn-editor-sample.png?fit=max&auto=format&n=ofr1TVSA8RUT0-Zd&q=85&s=e3771956b26b92f53442eef2346f6e55" alt="DMN example showing a decision requirements diagram and a loan eligibility decision table" width="1888" height="716" data-path="images/dmn-editor-sample.png" />
</Frame>

If you can read a spreadsheet, you can read the decision table: **conditions on
the left, outcomes on the right**.

## Where to go next

<CardGroup cols={2}>
  <Card title="Introduction to DMN" icon="book-open" href="/docs/guides/tutorials/dmn/dmn-intro">
    Learn the building blocks — decision tables, DRDs, and FEEL — from the ground up.
  </Card>

  <Card title="Try it in the Playground" icon="play" href="/docs/components/playground/dmn-tutorial">
    Build and run an executable DMN model directly in the Aletyx Playground.
  </Card>

  <Card title="Basic Examples" icon="table" href="/docs/guides/tutorials/dmn/dmn-basic-example">
    Walk through a worked example, from inputs to a decision table.
  </Card>

  <Card title="Advanced Modeling" icon="diagram-project" href="/docs/guides/tutorials/dmn/dmn-deeper">
    Go deeper with multi-decision DRDs and more expressive FEEL.
  </Card>

  <Card title="DMN Reference" icon="list" href="/docs/reference/dmn/overview">
    Look up FEEL syntax, reserved words, and expression details.
  </Card>

  <Card title="Deploy DMN" icon="rocket" href="/docs/guides/tutorials/dmn/dmn-basic-deployment">
    Package and deploy decision models as runnable services.
  </Card>
</CardGroup>
