<anyAttribute> Element umożliwia nam rozszerzenie dokumentu XML z atrybutów nie określonych przez schemat!
<anyAttribute> Element
<anyAttribute> Element umożliwia nam rozszerzenie dokumentu XML z atrybutów nie określonych przez schemat.
Poniższy przykład jest fragment schematu XML o nazwie "family.xsd" . To pokazuje deklarację dla "person" elementu. Za pomocą <anyAttribute> elementu możemy dodać dowolną liczbę atrybutów do "person" elementu:
<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>
Teraz chcemy rozszerzyć "person" elementu z "gender" atrybutu. W tym przypadku możemy to zrobić, nawet jeśli autor powyższego schematu nie ogłosił żadnego "gender" atrybut.
Spójrz na tego pliku schematu, zwanego "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>
Plik XML poniżej (called "Myfamily.xml") , wykorzystuje elementy z dwóch różnych schematów; "family.xsd" i "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>
Powyższy plik XML jest poprawny, ponieważ schemat "family.xsd" pozwala nam dodać atrybut do "person" elementu.
<any> i <anyAttribute> elementy są wykorzystywane do wytwarzania dokumentów Extensible! Pozwalają one dokumenty zawierać dodatkowe elementy, które nie zostały zgłoszone w głównej schematu XML.