<xs:simpleType name="RecommendedFoodType">
<xs:annotation>
<xs:documentation>Telema classifier: defines recommended food for wine</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:NMTOKEN">
<xs:pattern value="APER"/>
<!-- Appetizer -->
<xs:pattern value="ASIA"/>
<!-- Asian food -->
<xs:pattern value="BEEF"/>
<!-- Beef -->
<xs:pattern value="CHSE"/>
<!-- Cheese -->
<xs:pattern value="DESRT"/>
<!-- Desserts -->
<xs:pattern value="FRIT"/>
<!-- Fruit -->
<xs:pattern value="GAME"/>
<!-- Game -->
<xs:pattern value="LAMB"/>
<!-- Lamb -->
<xs:pattern value="PIZA"/>
<!-- Pizza -->
<xs:pattern value="PORK"/>
<!-- Pork -->
<xs:pattern value="PSTA"/>
<!-- Pasta -->
<xs:pattern value="PTRY"/>
<!-- Poultry -->
<xs:pattern value="RFSH"/>
<!-- Redfish -->
<xs:pattern value="RFRS"/>
<!-- Refreshments -->
<xs:pattern value="SEAF"/>
<!-- Seafood -->
<xs:pattern value="SPCY"/>
<!-- Spicy food -->
<xs:pattern value="VEGE"/>
<!-- Vegetable -->
<xs:pattern value="WFSH"/>
<!-- Whitefish -->
</xs:restriction>
</xs:simpleType>
|