XML Schema documentation 元素

定义和用法

documentation 元素在 schema 中输入文本注释。该元素必须位于 annotation 元素内。

元素信息

出现次数 无限制
父元素 annotation
内容 任何格式正确的 XML 内容。

语法

  1. <documentation
  2. source=URI reference
  3. xml:lang=language
  4. >
  5.  
  6. Any well-formed XML content
  7.  
  8. </documentation>
属性 描述
source 可选。规定应用程序信息的来源。
xml:lang 可选。规定内容中使用的语言。

实例

  1. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  2.  
  3. <xs:annotation>
  4. <xs:appInfo>yousite Note</xs:appInfo>
  5. <xs:documentation xml:lang="en">
  6. This Schema defines a yousite note!
  7. </xs:documentation>
  8. </xs:annotation>
  9.  
  10. .
  11. .
  12. .
  13.  
  14. </xs:schema>