当前位置: 首页 > 网络学院 > XML相关教程 > Schema (XSD) > XML Schema documentation 元素
The documentation element is used to enter text comments in a schema. This element must go inside an annotation element.
documentation[文档]元素的作用是:在schema中加入文本注释。该元素必须位于一个注释元素内。
<documentation source=URI reference xml:lang=language > Any well-formed XML content </documentation> |
属性 | 描述 |
---|---|
source | Optional. Specifies the source of the application information 可选参数。指定应用程序信息源 |
xml:lang | Optional. Specifies the language used in the contents 可选参数。指定注释内容所使用的语言 |
<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> |