Lines Matching full:xsd
2 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
4 <xsd:annotation>
5 <xsd:documentation>
7 </xsd:documentation>
8 </xsd:annotation>
10 <xsd:element name="comments" type="commentsType"/>
12 <xsd:complexType name="commentsType">
13 <xsd:sequence>
14 <xsd:element name="comment" type="commentType" minOccurs='0' maxOccurs='unbounded'/>
15 </xsd:sequence>
16 <xsd:attribute name="name" type="xsd:string"/>
17 <xsd:attribute name="jdversion" type="xsd:string"/>
18 </xsd:complexType>
20 <xsd:complexType name="commentType">
21 <xsd:sequence>
22 <xsd:element name="identifier" type="identifierType" minOccurs='1' maxOccurs='unbounded'/>
23 <xsd:element name="text" type="xsd:string" minOccurs='1' maxOccurs='1'/>
24 </xsd:sequence>
25 </xsd:complexType>
27 <xsd:complexType name="identifierType">
28 <xsd:attribute name="id" type="xsd:string"/>
29 </xsd:complexType>
31 </xsd