XML Schema documentation 元素
-
定义和使用
documentation 元素用于在模式中输入文本注释。 该元素必须位于注释元素内。父元素:annotation
-
语法
<documentation source=URI reference xml:lang=language> Any well-formed XML content </documentation>
-
参数
属性 描述 source 可选的。指定应用程序信息的来源 xml:lang 可选的。指定内容中使用的语言 -
示例
<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>