Let say we have the following schema (from a Microsoft sample):
<xs:element name="zooAnimals">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="elephant"/>
<xs:element name="bear"/>
<xs:element name="giraffe"/>
</xs:sequence>
</xs:complexType>
</xs:element>
The sequence is optional, so all elements below can appear or not.
Now, if we have:
<xs:element name="zooAnimals">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="elephant" minOccurs="0" maxOccurs="1"/>
<xs:element name="bear" minOccurs="1" maxOccurs="unbounded"/>
<xs:element name="giraffe" minOccurs="1" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
</xs:element>
Elements bear
and giraffe
must be present if zooAnimals
is present.
Up to now, I'm OK.
But what if we have this (mix of the above example and "real life" XSD)?
<xs:element name="zooAnimals">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="1">
<xs:element name="elephant" minOccurs="1" maxOccurs="1"/>
<xs:element name="bear" minOccurs="0" maxOccurs="1"/>
<xs:element name="giraffe" minOccurs="0" maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
</xs:element>
If the sequence is mandatory, why specify minOccurs
in elements, and why some ones can be with minOccurs="0"
?
elements
bear
andgiraffe
must be present ifzooAnimals
is present. Up to now, I'm OK
This may be where you might have to adjust your understanding.
Because the xs:sequence
is optional, zooAmimals
may still be present without any of elephant
, bear
, or giraffe
being present.
If the sequence is mandatory, why specify
minOccurs
in elements, and why some ones can be withminOccurs="0"
?
You're missing that there are two levels of occurrence constraints in play:
On xs:sequence
, the occurrence constraints apply to the sequence group collectively. The collective group might be optional, required, or be able to be repeated as a group.
On the xs:element
children of xs:sequence
, the occurrence constraints apply to the children individually after taking into account the occurrence constraints on the xs:sequence
as a group. If the xs:sequence
is, say, optional, and the group is omitted, the individual xs:element
constraints do not matter; otherwise, the xs:element
occurrence constraints govern the occurrences of each element individually within each xs:sequence
group occurrence.