<xsd:simpleType name="DaysLateCodeEnumType">
<xsd:annotation>
<xsd:documentation>A set of codes classifying periods of late payment.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:normalizedString">
<xsd:enumeration value="Late30Days">
<xsd:annotation>
<xsd:documentation>Account is between 30 and 59 days past due.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Late60Days">
<xsd:annotation>
<xsd:documentation>Account is between 60 and 89 days past due.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Late90Days">
<xsd:annotation>
<xsd:documentation>Account is betwen 90 and 119 days past due.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="LateOver120Days">
<xsd:annotation>
<xsd:documentation>Account is 120 days or more past due.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
|