<museum>
<museumName>Metropolitan Museum of Art</museumName>
<dateEstablished>1870</dateEstablished>
<address>1000 Fifth Avenue, New York, NY 10028</address>
<link>http://metmuseum.org</link>
<mPicture filename="themet.jpg"/>
<country>USA</country>
<museumHours>
<date>02-17-2004</date>
<openingTime>11:00 a.m.</openingTime>
<location>Great Hall</location>
<eventType>Gallery Talk</eventType>
<eventDescription>
Poets, Lovers, and Heroes in Italian Mythological Prints
</eventDescription>
</museumHours>
<museumHours>
<date>02-17-2004</date>
<openingTime>11:00 a.m.</openingTime>
<location>Uris Center for Education</location>
<eventType>Family Program</eventType>
<eventDescription>
A gallery program for visitors ages five through twelve and
accompanying adults to welcome them to the Museum's collection
through discussions and sketching
</eventDescription>
</museumHours>
<museumHours>
<date>02-18-2004</date>
<openingTime>6:00 p.m.</openingTime>
<location>Grace Rainey Rogers Auditorium</location>
<eventType>Lecture</eventType>
<eventDescription>
Curious Combinations in Siracusa and Palermo; a Baroque Stucco
Oratory; and Churches in Modica and Ragusa Ibla
</eventDescription>
</museumHours>
<museumHours>
<date>02-19-2004</date>
<openingTime>11:00 a.m.</openingTime>
<location>Great Hall</location>
<eventType>Gallery Talk</eventType>
<eventDescription>
Images of George Washington
</eventDescription>
</museumHours>
<museumHours>
<date>02-20-2004</date>
<openingTime>2:00 p.m.</openingTime>
<location>Vanderlyn's Panorama</location>
<eventType>Lecture</eventType>
<eventDescription>
A Lacquer Penbox by Manohar: An Example of Late Safavid Style
Painting in India
</eventDescription>
</museumHours>
<museumHours>
<date>02-20-2004</date>
<openingTime>3:00 p.m.</openingTime>
<location>Great Hall</location>
<eventType>Gallery Talk</eventType>
<eventDescription>
Trade and Exchange in the Ancient Near East
</eventDescription>
</museumHours>
<museumHours>
<date>02-21-2004</date>
<openingTime>11:00 a.m.</openingTime>
<location> Grace Rainey Rogers Auditorium</location>
<eventType>Film</eventType>
<eventDescription>
Like Water for Chocolate - this feature film weaves a romantic
fable in which chocolate plays a pivotal role in the cuisine of a
passionate young cook.
</eventDescription>
</museumHours>
</museum>
<xsd:sequence>
<xsd:element name="countryName" type="xsd:string"/>
<xsd:element name="currencyCode" type="currencyCodeType"/>
<xsd:element name="currencyName" type="xsd:string"/>
<!-- the next line is not necessary for answering question 1 of the exercise-->
<xsd:element name="flagImage"/>
</xsd:sequence>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="currency.xsl" type="text/xsl"?>
<!-- Well, didn't quite took the correct image paths, because there is no internet connection available right now.
I'm sure you can figure it out yourself! -->
xsi:noNamespaceSchemaLocation='currency.xsd'>
<currency>
<countryName>Germany</countryName>
<currencyCode>EUR</currencyCode>
<currencyName>Euros</currencyName>
<!-- the next line is not necessary for answering question 1 of the exercise-->
<flagImage filename="deutscheflagge.gif" value="German Flag" imageURL="http://www.deutschland.de"/>
</currency>
<currency>
<countryName>United Kingdom</countryName>
<currencyCode>GBP</currencyCode>
<currencyName>Pounds</currencyName>
<!-- the next line is not necessary for answering question 1 of the exercise-->
<flagImage filename="flag.gif" value="Flag" imageURL="http://www.uk.co.uk"/>
</currency>
<currency>
<countryName>Australia</countryName>
<currencyCode>AUD</currencyCode>
<currencyName>Dollars</currencyName>
<!-- the next line is not necessary for answering question 1 of the exercise-->
<flagImage filename="flag.gif" value="Flag" imageURL="http://www.australia.au"/>
</currency>
<currency>
<countryName>Tuvalu</countryName>
<currencyCode>TVD</currencyCode>
<currencyName>Tuvalu Dollars</currencyName>
<!-- the next line is not necessary for answering question 1 of the exercise-->
<flagImage filename="flag.gif" value="Flag" imageURL="http://www.tavalu.tuv"/>
</currency>
<currency>
<countryName>United States of America</countryName>
<currencyCode>USD</currencyCode>
<currencyName>Dollars</currencyName>
<!-- the next line is not necessary for answering question 1 of the exercise-->
<flagImage filename="flag.gif" value="Flag" imageURL="http://www.whitehouse.gov/"/>
</currency>
<?xml version="1.0" encoding="UTF-8"?><xsd:schemaxmlns:xsd="http://www.w3.org/2001/XMLSchema"elementFormDefault="unqualified"><!-- Spa Finder --><xsd:elementname="spaFinder"><xsd:complexType><xsd:sequence><xsd:elementname="spa"type="spaDetails"minOccurs="1"maxOccurs="unbounded"/></xsd:sequence></xsd:complexType></xsd:element><!-- Spa --><xsd:complexTypename="spaDetails"><xsd:sequence><xsd:elementname="spaName"type="xsd:string"/><xsd:elementname="spaOwner"type="xsd:string"/><xsd:elementname="spaPhone"type="xsd:string"/><xsd:elementname="spaCity"type="xsd:string"/><xsd:elementname="spaState"type="xsd:string"/><xsd:elementname="spaAddress"type="xsd:string"/><xsd:elementname="startedIn"type="xsd:date"/><xsd:elementname="spaType"type="xsd:string"/><!--Activity is a complexType defined in the Spa to indicate the one-to-many relationship between spa and activities.--><xsd:elementname="activity"type="activityDetails"minOccurs="1"maxOccurs="unbounded"/></xsd:sequence></xsd:complexType><!-- Activity --><xsd:complexTypename="activityDetails"><xsd:sequence><xsd:elementname="activityName"type="xsd:string"/><xsd:elementname="description"type="xsd:string"/><xsd:elementname="price"type="xsd:decimal"/><!--Offering is a complexType defined in the Activities to indicate the one-to-many relationship between activities and offerings.--><xsd:elementname="offering"type="offeringDetails"minOccurs="1"maxOccurs="unbounded"/></xsd:sequence></xsd:complexType><!-- Offering --><xsd:complexTypename="offeringDetails"><xsd:sequence><xsd:elementname="days"type="xsd:string"/><xsd:elementname="time"type="xsd:string"/><xsd:elementname="practitioner"type="xsd:string"/><xsd:elementname="floor"type="xsd:integer"/><xsd:elementname="room"type="xsd:string"/></xsd:sequence></xsd:complexType></xsd:schema>