Latest web development tutorials

XML Schema documentation element

XML Schema Reference Complete XML Schema Reference

Definition and Usage

documentation element of the input text annotation in the schema. This element must be located within the annotation elements.

Element Information

  • Parent element: annotation

grammar

<documentation
source=URI reference
xml:lang=language>

Any well-formed XML content

</documentation>

属性 描述
source 可选。规定应用程序信息的来源。
xml:lang 可选。规定内容中使用的语言。

Example 1

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:annotation>
<xs:appinfo>W3CSchool Note</xs:appinfo>
<xs:documentation xml:lang="en">
This Schema defines a W3CSchool note!
</xs:documentation>
</xs:annotation>

.
.
.

</xs:schema>


XML Schema Reference Complete XML Schema Reference