XML Schema annotation 元素
XML Schema annotation 元素是一个顶层元素,规定 schema 的注释
<annotation id=ID *any attributes* >(appinfo|documentation)*</annotation>
*
符号声明该元素可在 annotation 元素中出现零次或多次
属性
属性 | 描述 |
---|---|
id | 可选。该元素的唯一标识符 |
any attributes | 可选。规定带有 non-schema 命名空间的任何其它属性 |
元素信息
- 父元素: 任何元素
范例 1
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:annotation> <xs:appinfo>简单教程笔记</xs:appinfo> <xs:documentation xml:lang="en">这个 schema 定义了简单教程笔记</xs:documentation> </xs:annotation> ... </xs:schema>