最新的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参考手册