Latest web development tutorials
 

XML Schema appinfo Element


< Complete XML Schema Reference

Definition and Usage

The appinfo element specifies information to be used by the application. This element must go within an annotation element.

Element Information

  • Parent elements: annotation

Syntax

<appinfo
source=anyURL
>

Any well-formed XML content

</appinfo>

Attribute Description
source Optional. A URI reference that specifies the source of the application information

Example 1

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

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

.
.
.

</xs:schema>

< Complete XML Schema Reference