The following table describes the possible forms of the quantifier:
occurs required exactly one occurrence (occurs 1) occurs optional zero or one occurrence (occurs 0..1) occurs ? zero or one occurrence (occurs 0..1) occurs * unlimited occurrence (occurs 0..*) occurs + one or more occurrences (occurs 1..*)
Explicit forms of the quantifier:
occurs n exactly n occurrences occurs m..n minimum m occurrences, maximum n occurrences occurs m..* minimum m occurrences, maximum unlimitedThe keyword "occurs" may by omitted. Following notations of the quantifier are equivalent: "occurs 10" and "10".