我在哪里可以找到 DOCX XML 文件的 XSD?

Where can I find the XSDs of DOCX XML files?

我创建了一个 docx 文件,并解压缩了它。现在我有:

[Content_Types].xml的内容是:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
    <Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/>
    <Default Extension="xml" ContentType="application/xml"/>
    <Override PartName="/word/document.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"/>
    <Override PartName="/word/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"/>
    <Override PartName="/word/settings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"/>
    <Override PartName="/word/webSettings.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"/>
    <Override PartName="/word/fontTable.xml" ContentType="application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"/>
    <Override PartName="/word/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/>
    <Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/>
    <Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/>
</Types>

在哪里可以找到 [Content_Types].xml 的 xsd 架构文件?

("http://schemas.openxmlformats.org/package/2006/content-types" - 不是常规网页,也不包含与 xsd...相关的内容)

[Content_Types].xml 为作为 OO 一部分的开放打包约定容器文件技术中的包部分定义 MIME 媒体类型XML.

请参阅 Standard ECMA-376 站点,任何版本的 第 2 部分 ,获取 OPC XSD,包括您要查找的 opc-contentTypes.xsd。开头是这样的:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xs:schema xmlns="http://schemas.openxmlformats.org/package/2006/content-types"
  xmlns:xs="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://schemas.openxmlformats.org/package/2006/content-types"
  elementFormDefault="qualified" attributeFormDefault="unqualified"
  blockDefault="#all">

  <xs:element name="Types" type="CT_Types"/>

第 4 部分 包含 OOXML 其他部分的参考和 XSD,例如 WordprocessingML、SpreadsheetML、PresentationML、DrawingML、Shared ML 和 Custom XML架构。