<xs:simpleType name="WineColourType">
<xs:annotation>
<xs:documentation>Telema classifier: defines the colour of wine</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:pattern value="PINK"/>
<xs:pattern value="RED"/>
<xs:pattern value="WHITE"/>
</xs:restriction>
</xs:simpleType>
|