XML 架构 notation 元素
❮ 完整的 XML 架构参考
定义和用法
notation 元素描述了 XML 文档中非 XML 数据的格式。
元素信息
- 父元素: schema
语法
<notation
id=ID
name=NCName
public=anyURI
system=anyURI
any attributes
>
(annotation?)
</notation>
(? 符号表明该元素可以在符号元素内出现零次或一次)
属性 | 描述 |
---|---|
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 架构参考