forked from pabigot/pyxb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqattr.xsd
22 lines (18 loc) · 779 Bytes
/
qattr.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tns="URN:SOAP"
targetNamespace="URN:SOAP" >
<!-- Envelope, header and body -->
<xs:element name="Envelope" type="tns:Envelope" />
<xs:complexType name="Envelope" >
<xs:sequence>
<xs:element name="Header" type="xs:string" minOccurs="0" />
<xs:element name="Body" type="xs:string" minOccurs="1" />
<xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="lax" />
</xs:sequence>
<xs:anyAttribute namespace="##other" processContents="lax" />
</xs:complexType>
<xs:simpleType name="encodingStyle" >
<xs:list itemType="xs:anyURI" />
</xs:simpleType>
<xs:attribute name="encodingStyle" type="tns:encodingStyle" />
</xs:schema>