<anyAttribute>要素は、スキーマで指定されていない属性を持つXML文書を拡張することを可能に!
<anyAttribute>要素
<anyAttribute>要素は、スキーマで指定されていない属性を持つXML文書を拡張することを可能にしています。
次の例では、と呼ばれるXMLスキーマからの断片である"family.xsd" 。 それはのための宣言を示し"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>
今、私たちは拡張したい"person"を持つ要素を"gender"の属性。 このケースでは、上記のスキーマの作者は任意の宣言はありません場合でも、そうすることができ"gender"の属性を。
呼ばれるこのスキーマファイル、を見て"attribute.xsd" :
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3ii.com"
xmlns="http://www.w3ii.com"
elementFormDefault="qualified">
<xs:attribute name="gender">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="male|female"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:schema>
以下のXMLファイル(called "Myfamily.xml") 、二つの異なるスキーマからのコンポーネントを使用しています。 "family.xsd"と"attribute.xsd" :
<?xml version="1.0" encoding="UTF-8"?>
<persons xmlns="http://www.microsoft.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:SchemaLocation="http://www.microsoft.com family.xsd
http://www.w3ii.com attribute.xsd">
<person gender="female">
<firstname>Hege</firstname>
<lastname>Refsnes</lastname>
</person>
<person gender="male">
<firstname>Stale</firstname>
<lastname>Refsnes</lastname>
</person>
</persons>
スキーマため、上記のXMLファイルが有効である"family.xsd"私たちはに属性を追加することを可能にする"person"の要素。
<any>と<anyAttribute>要素は、拡張文書を作るために使用されています! 彼らは、ドキュメントがメインのXMLスキーマで宣言されていない追加の要素を含むことができます。