我关注了XSD。
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="a">
<xs:complexType>
<xs:sequence>
<xs:element name="b">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="c">
<xs:complexType>
<xs:attribute name="id" use="required" >
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="1"/>
<xs:enumeration value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="name" use="required" >
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="AA"/>
<xs:enumeration value="BB"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
这对
有效<?xml version="1.0" encoding="UTF-8" ?>
<a>
<b>
<c id="1" name="AA"/>
<c id="2" name="BB"/>
</b>
</a>
但我想编写一个Schema Document来限制所有属性组合中的值。为了进一步说明,上述XSD对以下XML也有效。
<?xml version="1.0" encoding="UTF-8" ?>
<a>
<b>
<c id="2" name="AA"/>
<c id="2" name="BB"/>
</b>
</a>
<?xml version="1.0" encoding="UTF-8" ?>
<a>
<b>
<c id="1" name="AA"/>
<c id="1" name="BB"/>
</b>
</a>
<?xml version="1.0" encoding="UTF-8" ?>
<a>
<b>
<c id="1" name="BB"/>
<c id="2" name="BB"/>
</b>
</a>
但我想将其限制为组值,例如 它应该对第一个示例有效,但不适用于任何其他xml。有没有办法做到这一点?
<?xml version="1.0" encoding="UTF-8" ?>
<a>
<b>
<c id="1" name="AA"/>
<c id="2" name="BB"/>
</b>
</a>
答案 0 :(得分:2)
我不太擅长从少数例子中制定一般规则。但一般原则是,要为属性组合编写规则,需要XSD 1.1断言。有几个模式处理器支持XSD 1.1和断言,但也有一些不支持,所以你必须做出决定。