project-1.0.xsd 417 B

12345678910111213
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <xsd:schema xmlns="http://www.example.com/schema/projectwithxsd"
  3. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  4. targetNamespace="http://www.example.com/schema/projectwithxsd"
  5. elementFormDefault="qualified">
  6. <xsd:element name="bar" type="bar" />
  7. <xsd:complexType name="bar">
  8. <xsd:attribute name="foo" type="xsd:string" />
  9. </xsd:complexType>
  10. </xsd:schema>