restrict-CT-attr-ref_0.xsd 780 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  3. attributeFormDefault="qualified"
  4. xmlns:foo="http://FOO"
  5. targetNamespace="http://FOO">
  6. <xsd:attribute name="id" type="xsd:ID"/>
  7. <xsd:complexType name="typeIDAttr">
  8. <xsd:attribute ref="foo:id"/>
  9. </xsd:complexType>
  10. <xsd:simpleType name="fooID">
  11. <xsd:restriction base="xsd:ID">
  12. <xsd:pattern value="b\d{10}"/>
  13. </xsd:restriction>
  14. </xsd:simpleType>
  15. <xsd:element name="foo">
  16. <xsd:complexType>
  17. <xsd:complexContent>
  18. <xsd:restriction base="foo:typeIDAttr">
  19. <xsd:attribute name="id" type="foo:fooID"/>
  20. </xsd:restriction>
  21. </xsd:complexContent>
  22. </xsd:complexType>
  23. </xsd:element>
  24. </xsd:schema>