我需要生成XSD。在根元素下,7个不同元素中的任何一个都可以有0,1或多个出现,这些元素可以按任何顺序出现。
我不能使用序列,因为元素不一定是预定义的顺序。这将是一个有效的架构,但它施加了太严格的限制:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="data">
<xs:complexType>
<xs:sequence>
我不能全部使用,因为它不允许maxOccurs无限制,所以这是一个无效的模式:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="data">
<xs:complexType>
<xs:all>
<xs:element name="address" minOccurs="0" maxOccurs="unbounded">
我有一种感觉,我遇到了XSD的另一个限制,但我只是想我会问,因为我是XML Schemas的新手。
答案 0 :(得分:1)
在每个元素上使用choice
块maxOccurs="1"
。这将确保a,b或c中至少有一个,但每个不超过一个。
<xs:choice minOccurs="1" maxOccurs="unbounded">
<xs:element name="a" maxOccurs="1"/>
<xs:element name="b" maxOccurs="1"/>
<xs:element name="c" maxOccurs="1"/>
</xs:choice>
以下所有条款在此架构下均有效:
<root>
<a/>
</root>
<root>
<a/>
<b/>
</root>
<root>
<b/>
<a/>
</root>
<root>
<c/>
<a/>
</root>
<root>
<a/>
<c/>
<b/>
</root>