<?xml version="1.0"?>
<xsd:schema targetNamespace="urn:ScheduledTour" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="urn:ScheduledTour" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xsd:complexType name="Scheduled_Tours">
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="unbounded" name="SCHEDTOUR">
<xsd:complexType>
<xsd:attribute name="TOUR_TYPE" type="xsd:string" use="required"></xsd:attribute>
<xsd:attribute name="START_DATE" type="xsd:string" use="required"></xsd:attribute>
<xsd:attribute name="RETURN_DATE" type="xsd:string"></xsd:attribute>
<xsd:attribute name="PRICE" type="xsd:int" use="required"></xsd:attribute>
<xsd:attribute name="MAX_PART" type="xsd:int" use="required"></xsd:attribute>
<xsd:attribute name="GUIDE" type="xsd:int"></xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="documentName" type="xsd:string"></xsd:attribute>
</xsd:complexType>
</xsd:schema>
|