最新のWeb開発のチュートリアル
 

XMLスキーマ表記法の要素


<完全なXMLスキーマリファレンス

定義と使用法

表記要素は、XML文書内の非XMLデータの形式を記述する。

要素情報

  • Parent elements:スキーマ

構文

<notation
id=ID
name=NCName
public=anyURI
system=anyURI
any attributes
>

(annotation?)

</notation>

(?記号は要素が表記要素内に0回または1回発生する可能性があることを宣言します)

属性 説明
id 任意。 要素の一意のIDを指定します。
name 必須。 要素の名前を指定します。
public 必須。 URIが公開識別子に対応する指定
system

任意。 指定URIはシステム識別子に対応します

any attributes 任意。 非スキーマの名前空間を持つ任意の他の属性を指定します。

例1

次の例では、ビューアアプリケーション、view.exeを使用して、GIFとJPEGの表記を示しています。

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

<xs:notation name="gif" public="image/gif" system="view.exe"/>
<xs:notation name="jpeg" public="image/jpeg" system="view.exe"/>

<xs:element name="image">
  <xs:complexType>
    <xs:simpleContent>
      <xs:attribute name="type">
        <xs:simpleType>
          <xs:restriction base="xs:NOTATION">
            <xs:enumeration value="gif"/>
            <xs:enumeration value="jpeg"/>
          </xs:restriction>
        </xs:simpleType>
      </xs:attribute>
    </xs:simpleContent>
  </xs:complexType>
</xs:element>

</xs:schema>

The "image" element in a document could look like this:

<image type="gif"></image>

<完全なXMLスキーマリファレンス