<完全なXMLスキーマリファレンス
定義と使用法
注釈要素は、スキーマのコメントを指定するトップレベルの要素です。 コメントは、インラインドキュメントとしての役割を果たす。
要素情報
- Parent elements:任意の要素
構文
<annotation
id=ID
any attributes
>
(appinfo|documentation)*
</annotation>
(*印は、要素は注釈要素内に0回以上発生する可能性があることを宣言します)
属性 | 説明 |
---|---|
id | 任意。 要素の一意のIDを指定します。 |
any attributes | 任意。 非スキーマの名前空間を持つ任意の他の属性を指定します。 |
例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>
<完全なXMLスキーマリファレンス