<xsd:simpleType name="AddressNumberParity_type">
<xsd:annotation>
<xsd:documentation xml:lang="en">
"A relation between a pair of integers: if both integers
are odd or both are even they have the same parity; if
one is odd and the other is even they have different
parity."1
Odd and even addresses are usually associated with
opposite sides of a street. For example, a jurisdiction
may assign odd numbers to the right side of the street
when moving away from an address axis.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:token">
<xsd:enumeration value="EVEN" />
<xsd:enumeration value="ODD" />
<xsd:enumeration value="BOTH" />
</xsd:restriction>
</xsd:simpleType>
|