include1_0.inc 778 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0"?>
  2. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" >
  3. <xsd:simpleType name="barType">
  4. <xsd:restriction base="xsd:string">
  5. <xsd:maxLength value="10" />
  6. </xsd:restriction>
  7. </xsd:simpleType>
  8. <xsd:attribute name="bar" type="barType" fixed="o"/>
  9. <xsd:element name="bar.B" type="xsd:anyURI" block="#all" nillable="true" final="restriction extension"/>
  10. <xsd:element name="bar">
  11. <xsd:complexType>
  12. <xsd:sequence>
  13. <xsd:element name="bar.A" block="restriction" form="qualified" nillable="true" />
  14. <xsd:element ref="bar.B"/>
  15. </xsd:sequence>
  16. <xsd:attribute ref="bar" xml:lang="DE">
  17. <xsd:annotation/>
  18. </xsd:attribute>
  19. <xsd:attribute name="uri" type="xsd:token" />
  20. </xsd:complexType>
  21. </xsd:element>
  22. </xsd:schema>