Latest web development tutorials

XML Schema appinfo element

XML Schema Reference Complete XML Schema Reference

Definition and Usage

appInfo element specifies information element annotation application you want to use. This element must be located in the annotation.

Element Information

  • Parent element: annotation

grammar

<appinfo
source=anyURL
>

Any well-formed XML content

</appinfo>

属性 描述
source 可选。一个 URI 引用,规定应用程序信息的来源。

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