Mega Code Archive

 
Categories / XML / XML Schema
 

Import another XML schema

File: Data.xml <?xml version="1.0"?> <Books xmlns="http://www.rntsoft.com"            xmlns:xml="http://www.w3.org/XML/1998/namespace"            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"            xsi:schemaLocation=                           "http://www.rntsoft.com                            Schema.xsd                            http://www.w3.org/XML/1998/namespace                            xml.xsd">         <Book xml:lang="EN">                 <Title>title1</Title>                 <Author>author1</Author>                 <Date>1998</Date>                 <ISBN>1-11111-111-1</ISBN>                 <Publisher>publisher1</Publisher>         </Book>         <Book xml:lang="EN">                 <Title>title2</Title>                 <Author>author2</Author>                 <Date>1977</Date>                 <ISBN>2-222-22222-2</ISBN>                 <Publisher>publisher2</Publisher>         </Book> </Books> File: Schema.xsd <?xml version="1.0"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"             targetNamespace="http://www.rntsoft.com"             xmlns="http://www.rntsoft.com"             elementFormDefault="qualified">     <xsd:import namespace="http://www.w3.org/XML/1998/namespace"                 schemaLocation="xml.xsd"/>     <xsd:element name="Books">         <xsd:complexType>             <xsd:sequence>                 <xsd:element name="Book" maxOccurs="unbounded">                     <xsd:complexType>                         <xsd:sequence>                             <xsd:element name="Title" type="xsd:string"/>                             <xsd:element name="Author" type="xsd:string"/>                             <xsd:element name="Date" type="xsd:string"/>                             <xsd:element name="ISBN" type="xsd:string"/>                             <xsd:element name="Publisher" type="xsd:string"/>                         </xsd:sequence>                         <xsd:attribute ref="xml:lang"/>                     </xsd:complexType>                 </xsd:element>             </xsd:sequence>         </xsd:complexType>     </xsd:element> </xsd:schema> File:xml.xsd <?xml version='1.0'?> <xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace"            xmlns:xs="http://www.w3.org/2001/XMLSchema"             xml:lang="en">  <xs:attribute name="lang" type="xs:language">  </xs:attribute>  <xs:attribute name="space" default="preserve">   <xs:simpleType>    <xs:restriction base="xs:NCName">     <xs:enumeration value="default"/>     <xs:enumeration value="preserve"/>    </xs:restriction>   </xs:simpleType>  </xs:attribute>  <xs:attributeGroup name="specialAttrs">   <xs:attribute ref="xml:lang"/>   <xs:attribute ref="xml:space"/>  </xs:attributeGroup> </xs:schema>