XML Schema appinfo 元素
-
定义和使用
appinfo 元素指定应用程序要使用的信息。该元素必须位于注释元素内。父元素:annotation注释
-
语法
<appinfo source=anyURL > Any well-formed XML content </appinfo>
-
参数
属性 描述 source 可选的。 URI引用,指定应用程序信息的来源 -
示例
下面的示例显示了一个名为 “person” 的元素的声明。 通过使用 <anyAttribute> 元素,作者可以向 “person” 元素添加任意数量的属性:<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>