<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
	targetNamespace="http://example.org/TicketAgent.xsd">

	<element name="listFlightsRequest">
		<complexType>
			<sequence>
				<element name="depart" type="dateTime"></element>
				<element name="origin" type="string"></element>
				<element name="destination" type="string"></element>
			</sequence>
		</complexType>
	</element>

	<element name="listFlightsResponse">
		<complexType>
			<sequence>
				<element name="flight" type="string" minOccurs="0"
					maxOccurs="unbounded">
				</element>
			</sequence>
		</complexType>
	</element>

	<element name="reserveFlightRequest">
		<complexType>
			<sequence>
				<element name="depart" type="dateTime"></element>
				<element name="origin" type="string"></element>
				<element name="destination" type="string"></element>
				<element name="flight" type="string"></element>
			</sequence>
		</complexType>
	</element>

	<element name="reserveFlightResponse">
		<complexType>
			<sequence>
				<element name="result" type="string"></element>
			</sequence>
		</complexType>
	</element>

</schema>