Showing:

Annotations
Diagrams
Facets
Source
Used by
Simple Type TemperatureMeasurementUnitCodeType
Namespace No namespace
Annotations
Fully adopted GS1 classifier: defines temperature measurement unit, e.g. Celsius
Diagram
Diagram
Type restriction of xs:NMTOKEN
Facets
pattern (\c+) & ((CEL)|(FAH)|(KEL))
Used by
Source
<xs:simpleType name="TemperatureMeasurementUnitCodeType">
  <xs:annotation>
    <xs:documentation>Fully adopted GS1 classifier: defines temperature measurement unit, e.g. Celsius</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:NMTOKEN">
    <xs:pattern value="CEL"/>
    <!-- Celsius -->
    <xs:pattern value="FAH"/>
    <!-- Fahrenheit -->
    <xs:pattern value="KEL"/>
    <!-- Kelvin -->
  </xs:restriction>
</xs:simpleType>