<xs:complexType name="VariableDeclarationType">
<xs:annotation>
<xs:documentation>The VariableDeclarationType represents declaring a numerical variable. Val is the initial value of the variable. The value may be reset using a VariableSetType. The value may be used using a VariableValueType.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Name" type="xs:ID">
<xs:annotation>
<xs:documentation>The Name element is the name of the variable.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Val" type="xs:decimal">
<xs:annotation>
<xs:documentation>The Val element is the value of the variable.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType> |