| OLD line(s): 310
| NEW line(s): 311,323
<!-- U.S. Large Decimal Amount Type --> <xsd:simpleType name="USLargeDecimalAmountType"> <xsd:annotation> <xsd:documentation>Type for a U.S. amount field with dollars and cents that allows 4 decimals</xsd:documentation> </xsd:annotation> <xsd:restriction base="xsd:decimal"> <xsd:totalDigits value="19"/> <xsd:fractionDigits value="4"/> <xsd:minInclusive value="-999999999999999.9999"/> <xsd:maxInclusive value="999999999999999.9999"/> </xsd:restriction> </xsd:simpleType> |
| OLD line(s): 1325
<xsd:documentation>Used for a text field. Legal Characters: printable characters from ! to ~ plus symbols from ¡ to ¿ plus Spanish characters and single space. Illegal Character: leading space, trailing space, adjacent spaces.</xsd:documentation> | NEW line(s): 1338
<xsd:documentation>Used for a text field. Legal Characters: printable characters from ! to ~ plus the [monetary] pound, section and multiplication symbols, plus Spanish characters and single space. Illegal Character: leading space, trailing space, adjacent spaces.</xsd:documentation> |
| OLD line(s): 4819
| NEW line(s): 4833,4864
<!-- Alpha Row Id Type --> <xsd:simpleType name="AlphaRowIdType"> <xsd:annotation> <xsd:documentation>RowID type in the format of A, B, C, D , ..., Z, AA, AB, AC, ..., or a, b, c, d, ..., z, aa, ab, ac, ...</xsd:documentation> </xsd:annotation> <xsd:restriction base="TextType"> <xsd:maxLength value="4"/> <xsd:pattern value="[a-zA-Z]+"/> </xsd:restriction> </xsd:simpleType> <!-- Roman Row Id Type --> <xsd:simpleType name="RomanRowIdType"> <xsd:annotation> <xsd:documentation>RowID type in the format of I, II, III, IV, V , ..., or i, ii, iii, iv, v, ...</xsd:documentation> </xsd:annotation> <xsd:restriction base="TextType"> <xsd:maxLength value="10"/> <xsd:pattern value="[IVXLCDMivxlcdm]+"/> </xsd:restriction> </xsd:simpleType> <!-- Numeric Row Id Type --> <xsd:simpleType name="NumericRowIdType"> <xsd:annotation> <xsd:documentation>RowID type in the format of 1, 2, 3, 4, 5, ...</xsd:documentation> </xsd:annotation> <xsd:restriction base="IntegerPosType"> <xsd:totalDigits value="4"/> </xsd:restriction> </xsd:simpleType> |