Mega Code Archive

 
Categories / XML / XML Schema
 

AttributeGroup for elementFormDefault = qualified

<?xml version = "1.0" ?>  <schema xmlns = "http://www.w3.org/2001/XMLSchema"         targetNamespace = "http://www.rntsoft.com/employees"         xmlns:cust = "http://www.rntsoft.com/employees"         elementFormDefault = "qualified"         attributeFormDefault = "unqualified">        <element name = "employee" type = "cust:employeeType" />        <complexType name = "employeeType">       <sequence>          <element name = "FirstName" type = "string" />          <element name = "MiddleInitial" type = "string" />          <element ref = "cust:LastName" />       </sequence>       <attributeGroup ref = "cust:rootAttributes" />    </complexType>        <element name = "LastName" type = "string" />        <attributeGroup name = "rootAttributes">       <attribute name = "clubCardMember" type = "boolean" />       <attribute name = "employeeID" type = "integer" />    </attributeGroup>     </schema> The following instance document will be valid: <?xml version = "1.0" ?> <employee xmlns = "http://www.rntsoft.com/employees"           employeeID = "2442"           clubCardMember = "true">    <FirstName>first</FirstName>    <MiddleInitial>middle</MiddleInitial>    <LastName>last</LastName> </employee>