我有多个具有共同定义的 XML 模式。我想将这些定义存储在我们称之为的通用文件中Common.xsd
。guid
我已经成功地在其他模式中引用了该类型。
但是,我不需要,也不希望存在文件类型.common
。我还没有找到一种方法,例如属性,以确保这是不允许的,并且其中定义的任何内容Common.xsd
都只是可以继承的。
样本
Common.xsd
<?xml version="1.0" encoding="utf-8"?>
<xs:schema
targetNamespace="MyAssembly:Core:IO:Schemas"
elementFormDefault="qualified"
xmlns="MyAssembly:Core:IO:Schemas"
xmlns:mstns="MyAssembly:Core:IO:Schemas"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="guid">
<xs:annotation>
<xs:documentation xml:lang="en-us">
The representation of a GUID, generally the id of an element.
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="\{[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}\}"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>
我希望这会像在模式中声明类型一样简单。基本上我在这里谈论的是一个抽象模式,例如:
<xs:schema abstract="true">
</xs:schema>
为了澄清,我确实理解这不是它的工作方式,但我正在寻找最接近的方法来确保.commmon
文件不被允许或被声明。