Enumeration PrecipitationType

Types of precipitation.

Used in:
Precipitation
Enumeration Literals
Name Description
dry No precipitation.
rain Rain.
snow Snow.

Migration Information from XSD 0.9.1
Derived From:
Enum_Precipitation_type
Property Name XSD Type XSD 0.9.1 Name Migration
dry Attribute dry
rain Attribute rain
snow Attribute snow

XSD 1.0 Representation


<xsd:simpleType name="PrecipitationType">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="dry"/>
<xsd:enumeration value="rain"/>
<xsd:enumeration value="snow"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="parameter"/>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>

To XSD To XSLT