The type of a string without whitespace except spaces |
<xs:simpleType name="g2normalizedString"> <xs:annotation> <xs:documentation>The type of a string without whitespace except spaces</xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:pattern value="[\S ]*"/> </xs:restriction> </xs:simpleType> |