<any>要素は、スキーマで指定されていない要素を持つXML文書を拡張することを可能に!
<any>要素
<any>要素は、スキーマで指定されていない要素を持つXML文書を拡張することを可能にしています。
次の例では、と呼ばれるXMLスキーマからの断片である"family.xsd" 。 それはのための宣言を示し"person"の要素を。 使用して<any>要素を我々は拡張することができます(after <lastname>)の内容"person"いずれかの要素を持ちます:
<xs:element name="person">
<xs:complexType>
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
<xs:any minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
今、私たちは拡張したい"person"を持つ要素を"children"要素。 このケースでは、上記のスキーマの作者は任意の宣言はありません場合でも、そうすることができる"children"要素を。
呼ばれるこのスキーマファイル、を見て"children.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:element name="children">
<xs:complexType>
<xs:sequence>
<xs:element name="childname" type="xs:string"
maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
以下のXMLファイル(called "Myfamily.xml") 、二つの異なるスキーマからのコンポーネントを使用しています。 "family.xsd"と"children.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 children.xsd">
<person>
<firstname>Hege</firstname>
<lastname>Refsnes</lastname>
<children>
<childname>Cecilie</childname>
</children>
</person>
<person>
<firstname>Stale</firstname>
<lastname>Refsnes</lastname>
</person>
</persons>
スキーマため、上記のXMLファイルが有効である"family.xsd"私たちが拡張することを可能にする"person"の後に任意の要素を持つ要素を"lastname"要素。
<any>と<anyAttribute>要素は、拡張文書を作るために使用されています! 彼らは、ドキュメントがメインのXMLスキーマで宣言されていない追加の要素を含むことができます。