<xs:simpleType name="QCodeType">
<xs:annotation>
<xs:documentation>The type of a qualified code, i.e. a scheme alias, followed by a colon (“:”), followed by a code. A string of this type cannot contain white space characters. The code may contain colons.</xs:documentation>
<xs:documentation>The Backus Naur Form (BNF) expression for this is: <qcode> ::= <scheme> ":" <code> <scheme> is a string containing any character except white space or the ':' character, required <code> is a string containing any character except white space, required</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[^\s:]+:[^\s]+"/>
</xs:restriction>
</xs:simpleType> |