04-06-04 03:50 PM
Everett,
I solved this issue by creating a simpletype that has the restrictions I wan
ted, then extending that in a complex type which adds the attribute I wanted
.
Thanks
Tim
<xs:simpleType name="NumericSimple"><xs:restriction base="xs:nonNegativeInte
ger"><xs:minInclusive value="1" /><xs:totalDigits value="5" /></xs:restricti
on></xs:simpleType><xs:complexType name="Numeric"><xs:simpleContent><xs:exte
nsion base="NumericSimple">
<xs:attribute name="Precision" type="xs:unsignedShort" use="required" /></xs
:extension></xs:simpleContent></xs:complexType>
[ Post a follow-up to this message ]
|