アプリケーションによって使用される情報を annotation 要素内で指定します。
<appinfo
source = anyURI>
Content: ({any})*
</appinfo>
属性
- source
アプリケーション情報のソース。ソースは、URI 参照である必要があります。省略可能です。
要素情報
出現回数 |
無制限 |
親要素 |
|
コンテンツ |
任意の整形式の XML コンテンツ。 |
解説
appinfo 要素内に記述した情報は、アプリケーションへの処理指示として使用します。
例
annotation、appinfo、documentation の各要素の使用例を次に示します。
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="State">
<xs:annotation>
<xs:documentation>State Name</xs:documentation>
<xs:appinfo>Application Information</xs:appinfo>
</xs:annotation>
</xs:element>
</xs:schema>
その他のリソース
詳細については、www.w3.org/TR/2001/REC-xmlschema-1-20010502/#element-all で公開されている、W3C 勧告『XML Schema Part 1: Structures』を参照してください。