Value Complex Type

The Value complex type is a deleted value, decimal, or string.

<xs:complexType name="Value">
    <xs:choice>
        <xs:element name="delete">
            <xs:complexType />
        </xs:element>
        <xs:element name="decimal">
            <xs:complexType>
                <xs:attribute name="value"
                    type="unsignedInt"
                    use="required"
                 />
            </xs:complexType>
        </xs:element>
        <xs:element name="string">
            <xs:simpleType>
                <xs:restriction
                    base="string"
                >
                    <xs:enumeration
                        value="255"
                     />
                </xs:restriction>
            </xs:simpleType>
        </xs:element>
    </xs:choice>
</xs:complexType>

Child elements

Element Type Description
decimal
delete N/A
string

Attributes

Name Type Description
value unsignedInt

 

 

Send comments about this topic to Microsoft

Build date: 10/15/2013