<XML Schema參考手冊
定義和用法
進口元素被用來與不同的目標命名空間為文檔添加多個架構。
元素信息
- Parent elements:架構
句法
<import
id=ID
namespace=anyURI
schemaLocation=anyURI
any attributes
>
(annotation?)
</import>
(?符號聲明元素可出現零次或一次進口元素中)
屬性 | 描述 |
---|---|
id | 可選的。 指定一個唯一的ID為元素 |
namespace | 可選的。 指定命名空間的URI導入 |
schemaLocation | 可選的。 指定的URI模式的導入的命名空間 |
any attributes | 可選的。 規定帶有non-schema命名空間的任何其他屬性。 |
例1
下面的例子說明如何導入一個命名空間:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:import namespace="http://www.w3ii.com/schema"/>
..
..
..
</xs:schema>
<XML Schema參考手冊