paypoint-pos: pos.xsd

File pos.xsd, 654 bytes (added by vladimir, 9 years ago)
Line 
1<xs:schema xmlns:tns="http://www.stampsoft.ru/pos" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.stampsoft.ru/pos" attributeFormDefault="unqualified" elementFormDefault="qualified">
2        <xs:complexType name="order">
3                <xs:sequence>
4                        <xs:element name="orderitem" minOccurs="0" maxOccurs="unbounded"/>
5                </xs:sequence>
6        </xs:complexType>
7        <xs:complexType name="orderitem">
8                <xs:sequence>
9                        <xs:element name="id" type="xs:string"/>
10                        <xs:element name="name" type="xs:string"/>
11                        <xs:element name="count" type="xs:int"/>
12                        <xs:element name="cost" type="xs:int"/>
13                </xs:sequence>
14        </xs:complexType>
15</xs:schema>