DILCISBoard / CITS-ERMS

E-ARK Content Information Type Specification for Electronic Records Management Systems
6 stars 5 forks source link

Perhaps a small error in the complex type systemInfoType #51

Open vitlais opened 1 month ago

vitlais commented 1 month ago

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 the row:

<xs:element name="agent" type="agentComplexType" minOccurs="0"/>

it seems to me that minOccurs="0" should be replaced by maxOccurs="unbounded".