当前位置: 首页 > 网络学院 > XML相关教程 > Schema (XSD) > XML Schema appInfo 元素
The appInfo element specifies information to be used by the application. This element must go within an annotation element.
appInfo元素指定了应用程序使用的信息。这个元素必须在一个注释元素中。
<appInfo source=anyURL > Any well-formed XML content </appInfo> |
属性 | 描述 |
---|---|
source | Optional. A URI reference that specifies the source of the application information 可选参数。指定一个用于指明应用程序信息源的URI参数 |
<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> |