Home | History | Annotate | Download | only in schemas
      1 <?xml version="1.0"?>
      2 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
      3 	    targetNamespace="http://example.com/xsd/ns"
      4             elementFormDefault="qualified"
      5 	    attributeFormDefault="unqualified">
      6   <xsd:element name="foo">
      7     <xsd:complexType>
      8       <xsd:simpleContent>
      9         <xsd:extension base="xsd:string">
     10           <xsd:attribute name="id" type="xsd:ID"/>
     11         </xsd:extension>
     12       </xsd:simpleContent>
     13     </xsd:complexType>
     14   </xsd:element>
     15 </xsd:schema>
     16 
     17