<XML Schema参考手册
定义和用法
注释元素是指定模式注释的顶级元素。 这些意见作为内联文档。
元素信息
- Parent elements:任何元素
句法
<annotation
id=ID
any attributes
>
(appinfo|documentation)*
</annotation>
(*符号声明元素可出现注释元素中零次或多次)
属性 | 描述 |
---|---|
id | 可选的。 指定一个唯一的ID为元素 |
any attributes | 可选的。 规定带有non-schema命名空间的任何其他属性。 |
例1
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:appinfo>w3ii Note</xs:appinfo>
<xs:documentation xml:lang="en">
This Schema defines a w3ii note!
</xs:documentation>
</xs:annotation>
.
.
.
</xs:schema>
<XML Schema参考手册