an arbitrary string consisting of digits from 0 to 9; not allowing white space, letters; no length restriction |
<xs:simpleType name="tDigitString"> <xs:annotation> <xs:documentation>an arbitrary string consisting of digits from 0 to 9; not allowing white space, letters; no length restriction</xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:pattern value="[0-9]*"/> </xs:restriction> </xs:simpleType> |