我有以下XSD(XSD的一部分)
<xs:element name="sourceValue" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:normalizedString">
<xs:attribute name="label" type="xs:normalizedString"
use="required"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
在我的XML中,我有:
<?xml version="1.0" encoding="UTF-8"?>
<Record xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="assertion.xsd">
<SSN>33333332</SSN>
<sourceValue label="nrA">33333333</sourceValue>
<sourceValue label="nrB">111111111</sourceValue>
<Data>
<Patient>
<DateOfBirth>03-04-2000</DateOfBirth>
<Sexe>M</Sexe>
<Name>Patient A</Name>
</Patient>
</Data>
</Record>
我想以这样的方式更改我的XSD:当sourceValue带有label =&#34; nrA&#34;是强制性的,但标签=&#34; nrB&#34;是可选的。但我无法弄清楚如何做到这一点。
答案 0 :(得分:2)
不可能。相反,您应该为这两种情况使用不同的元素名称。
仍然建议使用不同的元素名称,但如果必须遵循当前的方法,则可以使用断言:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" vc:minVersion="1.1">
<xs:element name="Record">
<xs:complexType>
<xs:sequence>
<xs:element name="SSN" type="xs:string"/>
<xs:element ref="sourceValue"/>
<xs:element ref="sourceValue" minOccurs="0"/>
<xs:element name="Data">
<xs:complexType>
<xs:sequence>
<xs:element name="Patient">
<xs:complexType>
<xs:sequence>
<xs:element name="DateOfBirth" type="xs:string"/>
<xs:element name="Sexe" type="xs:string"/>
<xs:element name="Name" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:assert test="sourceValue[1]/@label = 'nrA'"/>
<xs:assert test="not(sourceValue[2]) or sourceValue[2]/@label = 'nrA'"/>
</xs:complexType>
</xs:element>
<xs:element name="sourceValue">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="label" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:schema>