forked from Vici-i/EnterpriseData_1_2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ExchangeMessage.xsd
27 lines (27 loc) · 1.15 KB
/
ExchangeMessage.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<xs:schema xmlns:tns="http://www.1c.ru/SSL/Exchange/Message" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.1c.ru/SSL/Exchange/Message" attributeFormDefault="unqualified" elementFormDefault="qualified">
<xs:complexType name="Confirmation">
<xs:sequence>
<xs:element name="ExchangePlan" type="xs:string"/>
<xs:element name="To" type="xs:string"/>
<xs:element name="From" type="xs:string"/>
<xs:element name="MessageNo" type="xs:integer"/>
<xs:element name="ReceivedNo" type="xs:integer"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Header">
<xs:sequence>
<xs:element name="Format" type="xs:string"/>
<xs:element name="CreationDate" type="xs:dateTime"/>
<xs:element name="Confirmation" type="tns:Confirmation" minOccurs="0"/>
<xs:element name="AvailableVersion" type="xs:string" maxOccurs="100"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Object" abstract="true">
<xs:sequence>
<xs:element name="AdditionalInfo" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="Ref">
<xs:restriction base="xs:string"/>
</xs:simpleType>
</xs:schema>