AddElements Schema
Property Element
Description
A property.
Namespace(none)
Diagram
Property Element
Overview
Property0..∞
A property.
name requiredxs:string
The property's name.
value requiredxs:anySimpleType
The property's value.
Attributes
NameTypeUseDefaultFixedDescription
namexs:stringrequired  The property's name.
valuexs:anySimpleTyperequired  The property's value.
Source
<xs:element name="Property" minOccurs="0" maxOccurs="unbounded" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>A property.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute name="name" type="xs:string" use="required">
      <xs:annotation>
        <xs:documentation>The property's name.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="value" type="xs:anySimpleType" use="required">
      <xs:annotation>
        <xs:documentation>The property's value.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
  </xs:complexType>
</xs:element>
See Also