allsg_0.xsd 732 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3. targetNamespace="urn:test:foo"
  4. xmlns:foo="urn:test:foo">
  5. <!-- Substitution group heads. -->
  6. <xsd:element name="gh-A" abstract="true"/>
  7. <xsd:element name="gh-B" abstract="true"/>
  8. <!-- Substitution group members. -->
  9. <xsd:element name="gm-A-1" substitutionGroup="foo:gh-A"/>
  10. <xsd:element name="gm-A-2" substitutionGroup="foo:gh-A"/>
  11. <xsd:element name="gm-B-1" substitutionGroup="foo:gh-B"/>
  12. <xsd:element name="gm-B-2" substitutionGroup="foo:gh-B"/>
  13. <xsd:element name="foo">
  14. <xsd:complexType>
  15. <xsd:all>
  16. <xsd:element ref="foo:gh-A"/>
  17. <xsd:element ref="foo:gh-B"/>
  18. </xsd:all>
  19. </xsd:complexType>
  20. </xsd:element>
  21. </xsd:schema>