<xs:simpleType name="WineCharacterType">
<xs:annotation>
<xs:documentation>Telema classifier: defines the character of wine</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:pattern value="AROM"/>
<!-- Aromatic-Fragrant -->
<xs:pattern value="FRSH"/>
<!-- Fresh -->
<xs:pattern value="FRTY"/>
<!-- Fruitful -->
<xs:pattern value="ITNS"/>
<!-- Intense -->
<xs:pattern value="LGHT"/>
<!-- Light -->
<xs:pattern value="MILD"/>
<!-- Mild-Soft -->
<xs:pattern value="SPCY"/>
<!-- Spicy -->
<xs:pattern value="STRG"/>
<!-- Strong -->
</xs:restriction>
</xs:simpleType>
|