我有一个xml文件,下面是相关的xsd:
complexType“UpgraderConfig”的元素“name”必须是唯一的。 我在“UpgraderConfigContainer”定义中添加了“unique”标签,但似乎无法获得所需的行为。
任何人都可以告诉我我做错了什么?
<?xml version="1.0"?>
<xs:schema targetNamespace="http://www.hp.com/maas/1.0.0/UpgraderConfig"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:config="http://www.hp.com/maas/1.0.0/UpgraderConfig"
elementFormDefault="qualified"
version="1.0.0">
<xs:simpleType name="stringWithoutWhiteSpace">
<xs:annotation>
<xs:documentation>One or more occurrences of any character which is not whitespace (i.e. not space, tab, newline, return)</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1" />
<xs:pattern value="\S+" />
</xs:restriction>
</xs:simpleType>
<xs:complexType name="UpgraderConfigContainer">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="Upgrader" type="config:UpgraderConfig" >
<xs:unique name="uniqueUgraderName">
<xs:selector xpath="Upgrader"/>
<xs:field xpath="name"/>
</xs:unique>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="UpgraderConfig">
<xs:sequence>
<xs:element name="name" type="xs:string"/>
<xs:element name="className" type="config:stringWithoutWhiteSpace"/>
</xs:sequence>
</xs:complexType>
<xs:element name="UpgraderConfigs" type="config:UpgraderConfigContainer" />
</xs:schema>
答案 0 :(得分:1)
您已将唯一约束定义得太低。它本身的元素不可能是唯一的。只有包含它的容器才能具有唯一约束。您已将('company_id,$cid, bla bla bla bla bla...??)->get();
标记为略微领先,因为它不是容器。相反,它是未绑定的元素,这意味着您有零个或多个UpgraderConfigContainer
个。包含UpgraderConfigContainer
的元素必须具有唯一约束。您必须将其添加到UpgraderConfigContainer
。
UpgraderConfigs