Description
A possible value in a predefined list of values.
 
Attributes
| Name | Type | Use | Default | Description | 
|---|
| Name | RestrictedString | required |   | The name of the possible value to include in the list of values. 
 For naming rules, see the RestrictedString simple type.  | 
| RealValue | integer | required |   | The integer used to represent the possible value. | 
Used By
Source
<xs:element xmlns:xs="http://www.w3.org/2001/XMLSchema" name="EnumValue" maxOccurs="unbounded">
    <xs:annotation>
        <xs:documentation>A possible value in a predefined list of values.</xs:documentation>
    </xs:annotation>
    <xs:complexType>
        <xs:attribute name="Name" type="RestrictedString" use="required" />
        <xs:attribute name="RealValue" type="xs:integer" use="required" />
    </xs:complexType>
</xs:element>
 |