<?xml version="1.0" encoding="UTF-8"?>
<oaidc:dc xmlns:oaidc="http://www.openarchives.org/oaidc/"
					xmlns:dc="http://purl.org/dc/elements/1.1/"
					xmlns:dcterms="http://purl.org/dc/terms/"
          xmlns:xlink="http://www.w3.org/1999/xlink"
					xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
					xmlns:xhtml="http://www.w3.org/1999/xhtml"
					xmlns:vCard="http://www.w3.org/2001/vcard-rdf/3.0#"
					xsi:schemaLocation="http://www.openarchives.org/oaidc/ complex_dc_container.xsd">

	<!-- Test cases for the complex_dc_container.xsd -->

	<!-- Default type is SimpleLiteral: only text content allowed -->
	<dc:title>Test the simple_dc_container.xsd</dc:title>
	<dc:creator>Tim Cole</dc:creator>
	<dc:creator>Tom Habing</dc:creator>

	<!-- Use SimpleLiteral explicitly: only text content allowed -->
	<dc:title xsi:type="dc:SimpleLiteral">Test the simple_dc_container.xsd</dc:title>
	<dc:creator xsi:type="dc:SimpleLiteral">Tim Cole</dc:creator>
	<dc:creator xsi:type="dc:SimpleLiteral">Tom Habing</dc:creator>

	<!-- Use ComplexLiteral: mixed content w/ embedded elements -->
	<dc:title xsi:type="dc:ComplexLiteral">Test the <xhtml:i>simple_dc_container.xsd</xhtml:i></dc:title>
	<dc:creator xsi:type="dc:ComplexLiteral">Tim Cole <xhtml:a href="mailto:t-cole3@uiuc.edu">t-cole3@uiuc.edu</xhtml:a></dc:creator>
	<dc:creator xsi:type="dc:ComplexLiteral">Tom Habing <xhtml:a href="mailto:thabing@uiuc.edu">thabing@uiuc.edu</xhtml:a></dc:creator>

	<!-- Use ComplexResource: only embedded elements -->
	<dc:title xsi:type="dc:ComplexResource" xlink:label="TITLE">
		<myTitle>Test the simple_dc_container.xsd</myTitle>
	</dc:title>
	<dc:creator xsi:type="dc:ComplexResource">
		<vCard:FN>Tim Cole</vCard:FN>
		<vCard:N>
			<vCard:Family>Cole</vCard:Family>
			<vCard:Given>Tim</vCard:Given>
		</vCard:N>
	</dc:creator>
	<dc:creator xsi:type="dc:ComplexResource">
		<vCard:FN>Tom Habing</vCard:FN>
		<vCard:N>
			<vCard:Family>Habing</vCard:Family>
			<vCard:Given>Tom</vCard:Given>
		</vCard:N>
	</dc:creator>

	<!-- Use SimpleXLink: only simple XLink attributes, no child nodes -->
	<dc:title xsi:type="dc:SimpleXLink" xlink:href="#TITLE"/>
		<!-- NOTE:  xlink:href="#TITLE" refers back to the ComplexResource with the xlink:label="TITLE" -->
	<dc:creator xsi:type="dc:SimpleXLink" xlink:href="mailto:t-cole3@uiuc.edu" xlink:title="Tim Cole"/>
	<dc:creator xsi:type="dc:SimpleXLink" xlink:href="mailto:thabing@uiuc.edu" xlink:title="Tom Habing"/>

</oaidc:dc>
