<xsd:simpleType name="StringAlphaNumeric">
<xsd:annotation>
<xsd:documentation source="Description">Alpha Numeric string with no whitespace
Minimum length of 0 and a maximum length of 4096</xsd:documentation>
<xsd:appinfo>
<otm:OTA2Entity type="Simple" xmlns:otm="http://www.OpenTravel.org/ns/OTA2/AppInfo_v01_00">StringAlphaNumeric</otm:OTA2Entity>
</xsd:appinfo>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="4096" />
<xsd:pattern value="([0-9a-zA-Z]+)?" />
</xsd:restriction>
</xsd:simpleType>
|