<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
	targetNamespace="http://purl.org/dc/dcmitype/"
	xmlns:dcmitype="http://purl.org/dc/dcmitype/"
	xmlns:xs="http://www.w3.org/2001/XMLSchema">

	<xs:annotation>
		<xs:documentation xml:lang="en">
			DCMI Type Vocabulary XML Schema

			Created by Tom Habing, thabing@uiuc.edu

			XML Schema which enumerates the allowable DCMI Types

		</xs:documentation>

		<xs:appinfo xmlns:dc="http://purl.org/dc/elements/1.1/">
			<dc:title>DCMI Type Vocabulary  XML Schema</dc:title>
			<dc:creator>Tom Habing, thabing@uiuc.edu</dc:creator>
			<dc:relation>http://www.dublincore.org/documents/dcmi-type-vocabulary/</dc:relation>
		</xs:appinfo>
	</xs:annotation>

<xs:simpleType name="DCMIType">
	<xs:union>
		<xs:simpleType>
    	<xs:restriction base="xs:Name">
    		<xs:enumeration value="Collection"/>
    		<xs:enumeration value="Dataset"/>
    		<xs:enumeration value="Event"/>
    		<xs:enumeration value="Image"/>
    		<xs:enumeration value="InteractiveResource"/>
    		<xs:enumeration value="Service"/>
    		<xs:enumeration value="Software"/>
    		<xs:enumeration value="Sound"/>
    		<xs:enumeration value="Text"/>
    	</xs:restriction>
  	</xs:simpleType>
  </xs:union>
</xs:simpleType>

</xs:schema>