<xs:complexType name="LimitingNumberType">
<xs:annotation>
<xs:documentation>The LimitingNumberType defines a limiting number of items either as an integer or as a fraction.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:choice>
<xs:annotation>
<xs:documentation>This compositor provides a choice between the limiting number expressed as an integer or as a fraction.</xs:documentation>
</xs:annotation>
<xs:element name="Count" type="xs:nonNegativeInteger">
<xs:annotation>
<xs:documentation>The Count element defines the limiting number of items as an integer greater than or equal to zero.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Fraction" type="xs:decimal">
<xs:annotation>
<xs:documentation>The Fraction element defines the limiting number of items as a fraction between 0.0 and 1.0.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:sequence>
</xs:complexType> |