Partager via


2.2.9.3 List Element

The list element defines a list of target elements that are grouped together. Each list element SHOULD have a unique name attribute and can contain zero or more target elements.

<xs:complexType name="list-type">
    <xs:complexContent>
      <xs:extension base="tns:preamble-member-base-type">
        <xs:sequence>
          <xs:element name="target" type="tns:target-type" minOccurs="0" maxOccurs="unbounded" />
        </xs:sequence>
      </xs:extension>
    </xs:complexContent>
</xs:complexType>