Showing:

Annotations
Diagrams
Facets
Source
Used by
Simple Type WineTasteType
Namespace No namespace
Annotations
Telema classifier: defines the taste of wine
Diagram
Diagram
Type restriction of xs:NMTOKEN
Facets
pattern (\c+) & ((DRY)|(DSRT)|(FDRY)|(FSDY)|(FSSW)|(FSWT)|(SDRY)|(SSWT)|(SWT))
Used by
Source
<xs:simpleType name="WineTasteType">
  <xs:annotation>
    <xs:documentation>Telema classifier: defines the taste of wine</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:NMTOKEN">
    <xs:pattern value="DRY"/>
    <!-- Dry -->
    <xs:pattern value="DSRT"/>
    <!-- Dessert -->
    <xs:pattern value="FDRY"/>
    <!-- Fortified Dry -->
    <xs:pattern value="FSDY"/>
    <!-- Fortified Semi Dry -->
    <xs:pattern value="FSSW"/>
    <!-- Fortified Semi Sweet -->
    <xs:pattern value="FSWT"/>
    <!-- Fortified Sweet -->
    <xs:pattern value="SDRY"/>
    <!-- Semi Dry -->
    <xs:pattern value="SSWT"/>
    <!-- Semi Sweet -->
    <xs:pattern value="SWT"/>
    <!-- Sweet -->
  </xs:restriction>
</xs:simpleType>