Showing:

Annotations
Diagrams
Facets
Source
Used by
Simple Type tps:temperatureType
Namespace tps
Annotations
The temperature units (can be fahrenheit or celsius)
Diagram
Type restriction of xs:NMTOKEN
Facets
enumeration fahrenheit
enumeration celsius
Used by
Source
<xs:simpleType name="temperatureType">
  <xs:annotation>
    <xs:documentation>The temperature units (can be fahrenheit or celsius)</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:NMTOKEN">
    <xs:enumeration value="fahrenheit"/>
    <xs:enumeration value="celsius"/>
  </xs:restriction>
</xs:simpleType>