如何最好地使用 XSD 文件来存储多个模式的通用定义

How to best use an XSD file to store common definitions for multiple schemas

我有多个 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 文件不被允许或正在申报中。

I don't need, nor want a file type .common to exist however.

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


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

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

另见

  • What's the difference between xsd:include and xsd:import?
  • How to reference a local XML Schema file correctly?