In systemInfoType there is a definition of the element agents:
<xs:element name="agents" minOccurs="0">
<xs:annotation>
<xs:documentation xml:lang="en">Either one agent or a number of agents grouped in the agents element can be present</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="agent" type="agentComplexType" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
In
systemInfoType
there is a definition of the elementagents
:In the row:
it seems to me that
minOccurs="0"
should be replaced bymaxOccurs="unbounded"
.