允许随机顺序的XSD架构
我尝试设计一个XSD模式,允许元素以随机顺序排列,并具有maxOccurs =“unbounded”。
我的XML:
<root>
<key></key>
<group></group>
<group>
<key></key>
<key></key>
<group>
<key></key>
<key></key>
</group>
</group>
<key></key>
<key></key>
<group>
<key></key>
<key></key>
<key></key>
</group>
<key></key>
</root>
你想<xs:choice>
:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="groupType">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="group" type="groupType"/>
<xs:element name="key"/>
</xs:choice>
</xs:complexType>
<xs:element name="root" type="groupType" />
</xs:schema>
我通过将示例XML粘贴到Oxygen XML编辑器中,并使用“工具>生成/转换模式”(Input =您的示例XML文档)来获得此信息。 (它可能会在封面下使用Trang ......我不确定。)然后我调整了结果。
链接地址: http://www.djcxy.com/p/34311.html上一篇: XSD schema that allow random order
下一篇: how to allow elements in any order any number of times?