Minimum Occurrence Attribute
The occurrence attributes are used to define how often an element can occur. The minOccurs attribute specifies the minimum number of times an element can occur. The occurrence attributes minOccurs and maxOccurs can be combined to provide the occurrence range of an element. Occurrence attributes are used when cracking and producing/mutating data. Internally Peach will treat this element as an array.
Examples
<!-- Must occur at least twice -->
<Block name="OtherThings" minOccurs="2">
<String name="A" value="A" />
<String name="B" value="B" />
<String name="C" value="C" />
</Block>
<!-- Can occur 0 or more times -->
<String name="OptionalValue" minOccurs="0" />


