|
1
|
One and one only
|
|
0 / 1
|
Zero or one
|
|
M..N
|
From M to N (natural integer)
|
|
*
|
From zero to several
|
|
0..*
|
From zero to several
|
|
1..*
|
From one to several
|

0 / 1 | An order corresponds to zero or at most one invoice. |
* | No restriction is placed on the number of invoices corresponding to an order. |
1 | Each order has one and only one corresponding invoice. |
1..* | Each order has one or more corresponding invoices. |

1..* | A client can issue one or more orders. |
1 | An order is issued by one and only one client. |
1..* | An order contains one or more products. |
* | A product can be contained in any number of orders, including no orders. |
0 / 1 | A person works for a company. |
1..* | An alarm is triggered by one or more sensors. |
1 | A sensor covers one and only one zone. |
1..* | A window displays one or more strings. |
