ct-sc-nobase_0.xsd 563 B

123456789101112131415161718192021222324
  1. <?xml version="1.0"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3. targetNamespace="http://FOO"
  4. xmlns:foo="http://FOO">
  5. <xsd:complexType name="base">
  6. <xsd:simpleContent>
  7. <xsd:extension base="xsd:string"/>
  8. </xsd:simpleContent>
  9. </xsd:complexType>
  10. <xsd:element name="foo">
  11. <xsd:complexType>
  12. <xsd:simpleContent>
  13. <xsd:restriction base="foo:base">
  14. <xsd:simpleType>
  15. <xsd:restriction base="xsd:string"/>
  16. </xsd:simpleType>
  17. </xsd:restriction>
  18. </xsd:simpleContent>
  19. </xsd:complexType>
  20. </xsd:element>
  21. </xsd:schema>