src-attribute3-2-form_0.xsd 465 B

12345678910111213141516
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!-- 3.2.3 : 3.2
  3. If ref is present, then all of <simpleType>, form and type must be absent
  4. This one tests "form"
  5. -->
  6. <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://foo" xmlns:foo="http://foo">
  7. <element name="foo">
  8. <complexType>
  9. <attribute ref="foo:bar" form="qualified"/>
  10. </complexType>
  11. </element>
  12. <attribute name="bar" type="string"/>
  13. </schema>