<xsd:simpleType name="PrecedenceCodeEnumType">
<xsd:annotation>
<xsd:documentation>A set of enumerations indicating an entity's relative importance or priority among others. For example whether a particular contact method (e.g., office telephone; home telephone, email) has priority or should be use before others. Enumerated values are "1" = Primary; "2" = Secondary; "3" = Tertiary; "4" = quaternary; "5" = quinary; "6" = senary. OED: Precedence n. The fact of being above or ahead of another or others in order, rank, or importance; The fact of coming before another or others in time or succession; priority in time.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:normalizedString">
<xsd:enumeration value="1" />
<xsd:enumeration value="2" />
<xsd:enumeration value="3" />
<xsd:enumeration value="4" />
<xsd:enumeration value="5" />
</xsd:restriction>
</xsd:simpleType>
|