我在将属性分配给我的 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”元素,它可以包含 1 个或多个“ValueSet”元素。我的 ValueSet 类型包含一个元素 FishCount,它是一种复杂类型 FishCountType。
FishCountType 由 simpletype SimpleFishCount 组成,它基于一个有限制的十进制数,以及一个属性“interpolation”。
我正在使用的测试 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”中对“插值”属性的引用不正确,但我无法弄清楚。如果我在 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>