<?xml version="1.0"?>
<xsd:schema targetNamespace="urn:Tour" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="urn:Tour" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<xsd:complexType name="Tours">
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="unbounded" name="TOUR">
<xsd:complexType>
<xsd:attribute name="DESTINATION" type="xsd:string" use="required"></xsd:attribute>
<xsd:attribute name="TOUR_TYPE" type="xsd:string" use="required"></xsd:attribute>
<xsd:attribute name="NUM_DAYS" type="xsd:int" use="required"></xsd:attribute>
<xsd:attribute name="MAX_AGE" type="xsd:int"></xsd:attribute>
<xsd:attribute name="DESCRIPTION" type="xsd:string"></xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="documentName" type="xsd:string"></xsd:attribute>
</xsd:complexType>
</xsd:schema>
|