seq-dubl-elem1_0.xsd 752 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0"?>
  2. <schema xmlns="http://www.w3.org/2001/XMLSchema"
  3. xmlns:foo="http://FOO"
  4. targetNamespace="http://FOO" version="0.1"
  5. elementFormDefault="qualified">
  6. <complexType name="fooType">
  7. <choice>
  8. <sequence>
  9. <element name="PGPKeyID" type="base64Binary"/>
  10. <element name="PGPKeyPacket" type="base64Binary" minOccurs="0"/>
  11. <any namespace="##other" processContents="lax" minOccurs="0"
  12. maxOccurs="unbounded"/>
  13. </sequence>
  14. <sequence>
  15. <element name="PGPKeyPacket" type="base64Binary"/>
  16. <any namespace="##other" processContents="lax" minOccurs="0"
  17. maxOccurs="unbounded"/>
  18. </sequence>
  19. </choice>
  20. </complexType>
  21. <element name="foo" type="foo:fooType"/>
  22. </schema>