最新的Web開發教程
 

XML架構元素符號


<XML Schema參考手冊

定義和用法

符號元素描述在XML文檔中的非XML數據的格式。

元素信息

  • Parent elements:架構

句法

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

(annotation?)

</notation>

(?符號聲明元素可出現零次或一次的符號元素中)

屬性 描述
id 可選的。 指定一個唯一的ID為元素
name 需要。 指定名稱為元素
public 需要。 指定的URI相對應的公開識別符
system

可選的。 指定的URI相對應的系統標識符

any attributes 可選的。 規定帶有non-schema命名空間的任何其他屬性。

例1

下面的例子顯示了一個GIF和使用瀏覽器應用程序,VIEW.EXE一個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 Schema參考手冊