<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> องค์ประกอบที่ใช้ในการทำเอกสาร Extensible! พวกเขาช่วยให้เอกสารที่จะมีองค์ประกอบเพิ่มเติมที่ไม่ได้ประกาศในเค้าร่าง XML หลัก