我在XML模式中为complexType分配属性时遇到了一些麻烦。我的架构的缩减版本如下:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://xml-test.com"
xmlns="http://xml-test.com"
elementFormDefault="qualified">
<!--++++++++++ ELEMENT DEFINTIONS ++++++++++-->
<xs:element name="DataRoot" type="RootDataType"/>
<!--++++++++++ TYPE DEFINTIONS ++++++++++-->
<!-- Document Root -->
<xs:complexType name="RootDataType">
<xs:sequence minOccurs="1" maxOccurs="unbounded">
<xs:element name="ValueSet" type="ValuesType"/>
</xs:sequence>
<!-- Attributes -->
<xs:attribute name="index" type="xs:integer" use="required"/>
</xs:complexType>
<!-- Value Set Type: A type representing a series of data values -->
<xs:complexType name="ValuesType">
<xs:sequence minOccurs="1" maxOccurs="1">
<xs:element name="FishCount" type="FishCountType"/>
</xs:sequence>
<!-- Attributes -->
<xs:attribute name="catcher" type="xs:string" use="required"/>
</xs:complexType>
<!-- Simple Fish Count type -->
<xs:simpleType name="SimpleFishCountType">
<xs:restriction base="xs:decimal">
<xs:totalDigits value="3"/>
<xs:fractionDigits value="1"/>
</xs:restriction>
</xs:simpleType>
<!-- Fish Count type -->
<xs:complexType name="FishCountType">
<xs:simpleContent>
<xs:extension base="SimpleFishCountType">
<xs:attribute ref="interpolation"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<!--++++++++++ ATTRIBUTE DEFINTIONS ++++++++++-->
<!-- Attribute to specify interpolation method -->
<xs:attribute name="interpolation">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
解释:我有一个“DataRoot”元素,它可以包含一个或多个“ValueSet”元素。我的ValueSet类型包含一个元素FishCount,它是一个复杂类型FishCountType。
FishCountType由simpletype SimpleFishCount和一个属性“interpolation”组成,SimpleFishCount基于带限制的十进制数字。
我正在使用的测试XML文件如下:
<?xml version="1.0"?>
<DataRoot index="1"
xmlns="http://xml-test.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xml-test.com test-001.xsd">
<ValueSet catcher="CaptainBirdsEye">
<FishCount interpolation="0">12.3</FishCount>
</ValueSet>
</DataRoot>
使用此验证器:http://www.utilities-online.info/xsdvalidation/#.UiC9UpK0KSo
我看到XSD和XML都是有效且格式正确的,但是在针对XSD验证XML时,我收到此错误:
Not valid.
Error - Line 9, 36: org.xml.sax.SAXParseException; lineNumber: 9; columnNumber: 36; cvc-complex-type.3.2.2: Attribute 'interpolation' is not allowed to appear in element 'FishCount'.
似乎'FishCountType'中'interpolation'属性的引用在某种程度上是不正确的,但我无法弄明白。如果我在FishCountType类型中内联定义插值属性,并将其更改为xs:integer,那么一切都很好。
我在这里做错了什么?我可以这样使用自定义属性吗?
任何帮助表示感谢,我几乎秃顶了。
得益于@Michael Kay
这就是我的选择:
<xs:attributeGroup name="interpolation">
<xs:attribute name="interpolation">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="1"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
答案 0 :(得分:2)
这是命名空间问题。您已声明插值位于架构的目标命名空间中。
如果要重用属性定义,通常的解决方法是使用全局属性组中的本地声明来声明属性。作为本地声明,它(默认情况下)没有名称空间。