<?xml version="1.0" encoding="UTF-8"?>
<doc>
    <Passenger>
        <name>Santa Claus</name>
        <passportnumber>000111</passportnumber>
        <address>Somewhere</address>
        <reservation>
            <Flight>
                <flightId>LX123</flightId>
                <seats>80</seats>
                <date>2005-09-08</date>
                <source>
                    <Airport>
                        <name>Paris CDG</name>
                        <tax>60</tax>
                    </Airport>
                </source>
                <destination>
                    <Airport>
                        <name>Zurich Airpoort</name>
                        <tax>160</tax>
                    </Airport>
                </destination>
            </Flight>
        </reservation>
    </Passenger>
    
    <reservation>
        <passenger>
            <name>Santa Claus</name>
            <passportnumber>000111</passportnumber>
            <address>Somewhere</address>
        </passenger>
        <flightId seats="90">LX123</flightId>
    </reservation>
    
    
    
    <Flight>
        <flightId>LX123</flightId>
        <seats>80</seats>
        <date>2005-09-08</date>
        <source>
            <Airport>
                <name>Paris CDG</name>
                <tax>60</tax>
            </Airport>
        </source>
        <destination>
            <airport>
                <name>Zurich Airport</name>
                <tax>200</tax>
            </airport>
        </destination>
    </Flight>
    
    <Flight id="LX123">
        <flightId seats="90">LX123</flightId>
        <date>2005-09-08</date>
        <source>
            <Airport>
                <name>Paris CDG</name>
                <tax>60</tax>
            </Airport>
        </source>
        <destination>
            <Airport>
                <name>Zurich Airport</name>
                <tax>160</tax>
            </Airport>
        </destination>
    </Flight>
    
    <Flight> </Flight>
    
    <note>Call the boss</note>
</doc>
