<?xml version="1.0"?>
<endangered_species xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://www.cookwood.com/xml/examples/schemas_complex/default.xsd">
<animal>
	<name language="English">Tiger</name>
	<name language="Latin">panthera tigris</name>
	<threats><threat>poachers</threat>
	<threat>habitat destruction</threat>
	<threat>trade in tiger bones for traditional Chinese medicine (TCM)</threat>
	</threats>
	<weight>500 pounds</weight>
	<length>3 yards from nose to tail</length>
	<!--The newspaperid attribute is automatically set to 21, if it doesn't appear. If it does appear, its contents are set by the value given in the XML document (e.g. below). Note that, as in this example, the value of the newspaperid attribute does not have to be the same as the default, that is,  you can override the default without causing an error. -->
	<source sectionid="101" newspaperid="25"></source>
	<picture filename="tiger.jpg" x="200" y="197"/>
		
	<subspecies>
		<name language="English">Amur or Siberian</name>
		<name language="Latin">P.t. altaica</name>
		<region>Far East Russia</region>
		<population year="1999">445</population>
		</subspecies>
	
	<!-- Only one subspecies element is allowed (until we get to minOccurs and maxOccurs), and thus I removed the other subspecies elements. -->

	</animal>
<!-- Since the definition of the complexType has no maxOccurs attribute, the animal element can only appear once (the default value), and thus, I've removed the Rhino section. -->

	</endangered_species>

