<?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/fixed.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 sectionid attribute must be set to 101 (or be absent, in which case it will be automatically set to 101). -->
	<source sectionid="456" newspaperid="21"></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>

