<xsd:complexType name="AONrangeStructure">
<xsd:annotation>
<xsd:documentation>Numeric and optional alpha suffix for start and end numbers</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Number">
<xsd:simpleType>
<xsd:restriction base="xsd:positiveInteger">
<xsd:maxInclusive value="9999"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Suffix" minOccurs="0">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="1"/>
<xsd:maxLength value="1"/>
<xsd:pattern value="[A-Z]"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>