blob: 4f7bd68873ee7b67a189b436c1c0568bd111115c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="comments" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="a" type="com:aType" xmlns:com="comments">
<xs:annotation>
<xs:documentation>final comment</xs:documentation>
</xs:annotation>
</xs:element>
<xs:complexType name="aType">
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element type="xs:string" name="b" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>this is a comment 1</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="c">
<xs:annotation>
<xs:documentation>this is a comment 4 this is a comment 5</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:enumeration value="123456"/>
<xs:enumeration value="asdsa"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element type="xs:string" name="d" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>this is a comment 7 this is a comment 8</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:schema>