0

我尝试为可以由不同类型的条目组成的选择定义一个复杂类型,但只允许一个条目具有“多选”属性。

这是我尝试过的:

<element name="selection" minOccurs="0" maxOccurs="unbounded">
  <complexType>
    <sequence>
      <element name="name" type="string" />
      <element name="source">
        <complexType>
          <choice>
            <element name="item" minOccurs="1" maxOccurs="unbounded" type="string" />
            <element name="path" type="string" minOccurs="1" maxOccurs="1" />
          </choice>
        </complexType>  
      </element>
    </sequence>
    <attribute name="multiselection" type="boolean" minOccurs="1" maxOccurs="1" />
  </complexType>
</element>

结果应该是可以有更多的“选择”元素,无论源是“项目”类型还是“路径”类型都无关紧要。但只允许“选择”元素之一具有属性 multiselection = true。

但似乎属性没有 min-/maxOccures。我该如何解决这个问题?

谢谢

4

1 回答 1

3

首先,min/maxOccurs 是为粒子保留的(局部元素、元素引用、组引用、序列、选择)。属性出现由

使用 = (可选 | 禁止 | 必需) - 默认值是可选的

为了在一组元素中进一步限制这一点,只有一个元素的属性可以指定为 true 的逻辑值(要么是 1 要么是文字true)——这是你不能单独使用 XSD 1.0 做的事情。您可以在 XSD 之上使用 Schematron。

或者,您可以在 XSD 1.1 中轻松实现此目的。

<?xml version="1.0" encoding="utf-8" ?>
<!-- XML Schema generated by QTAssistant/XSD Module (http://www.paschidev.com) -->
<xsd:schema elementFormDefault="qualified" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="sample">
        <xsd:complexType>
            <xsd:sequence>
                <xsd:element name="selection" minOccurs="0" maxOccurs="unbounded">
                    <xsd:complexType>
                        <xsd:sequence>
                            <xsd:element name="name" type="xsd:string"/>
                            <xsd:element name="source">
                                <xsd:complexType>
                                    <xsd:choice>
                                        <xsd:element name="item" minOccurs="1" maxOccurs="unbounded" type="xsd:string"/>
                                        <xsd:element name="path" type="xsd:string" minOccurs="1" maxOccurs="1"/>
                                    </xsd:choice>
                                </xsd:complexType>
                            </xsd:element>
                        </xsd:sequence>
                        <xsd:attribute name="multiselection" type="xsd:boolean" use="required"/>                        
                    </xsd:complexType>
                </xsd:element>
            </xsd:sequence>
            <xsd:assert test="count(selection[@multiselection=true()])=1"/>         
        </xsd:complexType>
    </xsd:element>
</xsd:schema>

沿着这些路线的东西(两者都为假或两者都将无法通过验证):

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<!-- Sample XML generated by QTAssistant (http://www.paschidev.com) -->
<sample xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <selection multiselection="false">
        <name>name1</name>
        <source>
            <item>item1</item>
            <item>item1</item>
        </source>
    </selection>
    <selection multiselection="false">
        <name>name1</name>
        <source>
            <item>item1</item>
            <item>item1</item>
        </source>
    </selection>
</sample>


cvc-assertion.3.13.4.1: Assertion evaluation ('count(selection[@multiselection=true()])=1') for element 'sample' with type '#anonymous' did not succeed. 

制作其中之一true应该会产生成功的验证。

于 2013-03-11T14:10:48.017 回答