```text
┌───────────────────────┐
│ Offered order options │
├───┬───────────────────┴───┬───────────╥────────────────────────────────────────────╥─────────────┬───────────┐
│ U │ │ ║ Order options ║ │ │
│ │ Customer │ Order ╟──────────────────┬─────────────────────────╢ Description │ Reference │
│ │ │ ║ Discount │ Priority ║ │ │
│ ├───────────────────────┼───────────╫──────────────────┼─────────────────────────╫─────────────┼───────────┤
│ │ "Business", "Private" │ <10, >=10 ║ 0.05, 0.10, 0.15 │ "Normal", "High", "Low" ║ │ │
╞═══╪═══════════════════════╪═══════════╬══════════════════╪═════════════════════════╬═════════════╪═══════════╡
│ 1 │ "Business" │ <10 ║ 0.10 │ "Normal" ║ Desc 1 │ Ref 1 │
├───┼───────────────────────┼───────────╫──────────────────┼─────────────────────────╫─────────────┼───────────┤
│ 2 │ "Business" │ >=10 ║ 0.15 │ "High" ║ Desc 2 │ Ref 2 │
├───┼───────────────────────┼───────────╫──────────────────┼─────────────────────────╫─────────────┼───────────┤
│ 3 │ "Private" │ - ║ 0.05 │ "Low" ║ Desc 3 │ Ref 3 │
└───┴───────────────────────┴───────────╨──────────────────┴─────────────────────────╨─────────────┴───────────┘
```
> # Offered order options
> Order options
| | "Business", "Private" | <10, >=10 | 0.05, 0.10, 0.15 | "Normal", "High", "Low" | | |
| | `in` | `in` | `out` | `out` | `ann` | `ann` |
| 1 | "Business" | <10 | 0.10 | "Normal" | Desc 1 | Ref 1 |
| 2 | "Business" | >=10 | 0.15 | "High" | Desc 2 | Ref 2 |
| 3 | "Private" | - | 0.05 | "Low" | Desc 3 | Ref 3 |