1

我有多个具有共同定义的 XML 模式。我想将这些定义存储在我们称之为的通用文件中Common.xsdguid我已经成功地在其他模式中引用了该类型。

但是,我不需要,也不希望存在文件类型.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文件不被允许或被声明。

4

1 回答 1

1

但是,我不需要,也不希望文件类型 .common 存在。

XSD 没有控制文件类型或文件创建的概念。


您将常用类型分组到Common.xsd文件中的计划是合理的。

要限制有效 XML 文档的根元素,限制 XSD 中全局定义的元素;不允许将本地定义的元素用作根元素。

也可以看看

于 2021-05-01T19:20:29.473 回答