OLD line(s): 242
| NEW line(s): 243,265
<!-- U.S. Amount Type --> <xsd:simpleType name="USDecimalAmountType"> <xsd:annotation> <xsd:documentation>Type for a U.S. amount field with dollars and cents</xsd:documentation> </xsd:annotation> <xsd:restriction base="DecimalType"> <xsd:totalDigits value="17"/> <xsd:minInclusive value="-999999999999999.99"/> <xsd:maxInclusive value="999999999999999.99"/> </xsd:restriction> </xsd:simpleType> <!-- U.S. Amount Type - Non-Negative --> <xsd:simpleType name="USDecimalAmountNNType"> <xsd:annotation> <xsd:documentation>Type for a U.S. non-negative amount field with dollars and cents</xsd:documentation> </xsd:annotation> <xsd:restriction base="DecimalNNType"> <xsd:totalDigits value="17"/> <xsd:maxInclusive value="999999999999999.99"/> </xsd:restriction> </xsd:simpleType> |
OLD line(s): 2700
| NEW line(s): 2724,2730
<!-- Fuel Gallons Non-Negative Type --> <xsd:simpleType name="FuelGallonsNNType"> <xsd:restriction base="IntegerNNType"> <xsd:totalDigits value="9"/> </xsd:restriction> </xsd:simpleType> |
OLD line(s): 3044
| NEW line(s): 3075,3085
<!-- Type for VINs --> <xsd:simpleType name="VINType"> <xsd:annotation> <xsd:documentation>Type for Vehicle Identification No. - 17 alphanumeric characters excluding I, O, and Q</xsd:documentation> </xsd:annotation> <xsd:restriction base="xsd:string"> <xsd:pattern value="[A-HJ-NPR-Z0-9]{17}"/> <xsd:pattern value="[A-HJ-NPR-Z0-9]{19}"/> </xsd:restriction> </xsd:simpleType> |