<xs:schema 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
						targetNamespace="http://www.openarchives.org/oaidc/"
            xmlns="http://www.openarchives.org/oaidc/"
						xmlns:dc="http://purl.org/dc/elements/1.1/"
						xmlns:dcterms="http://purl.org/dc/terms/"
            elementFormDefault="qualified"
            attributeFormDefault="qualified">


	<xs:annotation>
		<xs:documentation xml:lang="en">
			Created by Tom Habing, thabing@uiuc.edu and Tim Cole, t-cole3@uiuc.edu

			This schema defines a root element dc which may only a subset of the core dc 15 elements and their corresponding refinements,
			and only in the specified sequence and cardinality.
		</xs:documentation>

		<xs:appinfo xmlns:dc="http://purl.org/dc/elements/1.1/">
			<dc:title>Qualified DC Container XML Schema</dc:title>
			<dc:creator>Tom Habing, thabing@uiuc.edu</dc:creator>
			<dc:creator>Tim Cole, t-cole3@uiuc.edu</dc:creator>
		</xs:appinfo>
	</xs:annotation>

	<xs:import namespace="http://purl.org/dc/elements/1.1/" schemaLocation="dc1.1.xsd"/>
	<xs:import namespace="http://purl.org/dc/terms/" schemaLocation="dcterms.xsd"/>

	<xs:element name="dc">
		<xs:complexType>
			<xs:sequence>
				<xs:element ref="dc:title" minOccurs="1" maxOccurs="1"/>
				<xs:element ref="dc:creator" minOccurs="1" maxOccurs="unbounded"/>
				<xs:element ref="dc:description" minOccurs="0" maxOccurs="1"/>
				<xs:element ref="dcterms:created"  minOccurs="0" maxOccurs="unbounded"/>
				<xs:element ref="dc:subject" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>

</xs:schema>