If the schema had a value of unqualified for elementFormDefault it would look like so RussianDoll_eu_au.xml : elementFormDefault « XML Schema « XML






If the schema had a value of unqualified for elementFormDefault it would look like so RussianDoll_eu_au.xml


File: Schema.xsd

<?xml version = "1.0" ?> 
<schema xmlns = "http://www.w3.org/2001/XMLSchema"
        targetNamespace = "http://www.java2s.com/employees"
        xmlns:cust = "http://www.java2s.com/employees"
        elementFormDefault = "unqualified"
        attributeFormDefault = "unqualified">
   
   <element name = "employee">
      <complexType>
         <sequence>
         <element name = "FirstName" type = "string" />
         <element name = "MiddleInitial" type = "string" 
                  minOccurs = "0" maxOccurs = "1" />
         <element name = "LastName" type = "string" />
         </sequence>
         <attribute name = "employeeID" use = "required" type = "integer" />
         <attribute name = "clubCardMember" type = "boolean" />
      </complexType>
   </element>
</schema>

File: Data.xml


<?xml version = "1.0" ?>
<cust:employee xmlns:cust = "http://www.java2s.com/employees"
               employeeID = "2442"
               clubCardMember = "true" >
   <FirstName>first</FirstName>
   <MiddleInitial>middle</MiddleInitial>
   <LastName>last</LastName>
</cust:employee>

 








Related examples in the same category

1.elementFormDefault="unqualified"
2.Requiring All Elements and Attributes Be Qualified
3.elementFormDefault = "qualified", attributeFormDefault = "unqualified"
4.attributeGroup for elementFormDefault = "qualified"
5.using local element declarations for the children of the employee element
6.Each element and attribute is declared globally
7.elementFormDefault=unqualified Salami Slice