当前位置: 首页 > 网络学院 > XML相关教程 > Schema (XSD) > XML Schema 注解元素
The annotation element is a top level element that specifies schema comments. The comments serve as inline documentation.
注释元素是一个顶级元素,它指明了schema注释。该注释是作为内置文档出现的。
<annotation id=ID any attributes > (appinfo|documentation)* </annotation> |
(The * sign declares that the element can occur zero or more times inside the annotation element)
符号用于声明元素可以在annotation元素中出现的次数(0次或多次)。
属性 | 描述 |
---|---|
id | Optional. Specifies a unique ID for the element 可选参数。为元素指定一个独立的ID |
any attributes | Optional. Specifies any other attributes with non-schema namespace 可选参数。指定其它的属性(这些属性无schema命名空间) |
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:annotation> <xs:appInfo>W3Schools Note</xs:appInfo> <xs:documentation xml:lang="en"> This Schema defines a W3Schools note! </xs:documentation> </xs:annotation> . . . </xs:schema> |