<xs:simpleType name="MediaTypeType">
<!--Replacing:
<xs:restriction base="xs:string">
<xs:annotation>
<xs:documentation>A restriction on string for the format of mediaType (i.e.
audio/GSM) as defined in <xhtml:a href="http://tools.ietf.org/html/rfc4288">RFC
4288</xhtml:a>. </xs:documentation>
</xs:annotation>
<xs:pattern value="[a-zA-Z]*/[a-zA-Z+-.]*"/>
</xs:restriction>
-->
<xs:restriction base="xs:string">
<xs:annotation>
<xs:documentation>A restriction on string for the format of mediaType (i.e. audio/GSM) as defined in
<a xmlns="http://www.w3.org/1999/xhtml" href="http://tools.ietf.org/html/rfc4288">RFC 4288</a>.</xs:documentation>
</xs:annotation>
<xs:maxLength value="256"/>
<xs:pattern value="[a-zA-Z]*/[a-zA-Z+-.]*"/>
</xs:restriction>
</xs:simpleType>
|