Enumeration CloudState

Definition of cloud states.

Used in:
Weather
Enumeration Literals
Name Description
skyOff Turns off the sky visualization.
free Cloud free conditions.
cloudy Cloudy. There are more clouds than sunshine.
overcast Overcast sky. Dull and gray looking.
rainy Rain clouds.

Migration Information from XSD 0.9.1
Derived From:
Enum_cloudState
Property Name XSD Type XSD 0.9.1 Name Migration
skyOff Attribute skyOff
free Attribute free
cloudy Attribute cloudy
overcast Attribute overcast
rainy Attribute rainy

XSD 1.0 Representation


<xsd:simpleType name="CloudState">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="skyOff"/>
<xsd:enumeration value="free"/>
<xsd:enumeration value="cloudy"/>
<xsd:enumeration value="overcast"/>
<xsd:enumeration value="rainy"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="parameter"/>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>

To XSD To XSLT