<XML Schema参考手册
定义和用法
在anyAttribute元素使笔者延长与未被schema指定的属性的XML文档。
元素信息
- Parent elements:复杂类型,限制(both simpleContent and complexContent) ,扩展(both simpleContent and complexContent) ,attributeGroup
句法
<anyAttribute
id=ID
namespace=namespace
processContents=lax|skip|strict
any attributes
>
(annotation?)
</anyAttribute>
(?符号声明元素可出现零次或一次anyAttribute元素中)
属性 | 描述 |
---|---|
id | 可选的。 指定一个唯一的ID为元素 |
namespace | 可选的。 指定包含的命名空间 可以使用的属性。 可以被设置为下列之一:
|
processContents | 可选的。 指定XML处理器应如何处理反对该any元素指定的元素验证。 可以被设置为下列之一:
|
any attributes | 可选的。 规定带有non-schema命名空间的任何其他属性。 |
例1
下面的示例显示了称为元素的声明"person" 。 通过使用<anyAttribute>元素作者可以任意数量的属性添加到"person"因素:
<xs:element name="person">
<xs:complexType>
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
</xs:sequence>
<xs:anyAttribute/>
</xs:complexType>
</xs:element>
<XML Schema参考手册