1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
3
|
xmlns="http://purl.org/dc/dcmitype/"
|
4
|
targetNamespace="http://purl.org/dc/dcmitype/"
|
5
|
elementFormDefault="qualified"
|
6
|
attributeFormDefault="unqualified">
|
7
|
|
8
|
<xs:annotation>
|
9
|
<xs:documentation xml:lang="en">
|
10
|
DCMI Type Vocabulary XML Schema
|
11
|
XML Schema for http://purl.org/dc/dcmitype/ namespace
|
12
|
|
13
|
Created 2008-02-11
|
14
|
|
15
|
Created by
|
16
|
|
17
|
Tim Cole (t-cole3@uiuc.edu)
|
18
|
Tom Habing (thabing@uiuc.edu)
|
19
|
Jane Hunter (jane@dstc.edu.au)
|
20
|
Pete Johnston (p.johnston@ukoln.ac.uk),
|
21
|
Carl Lagoze (lagoze@cs.cornell.edu)
|
22
|
|
23
|
This schema defines a simpleType which enumerates
|
24
|
the allowable values for the DCMI Type Vocabulary.
|
25
|
</xs:documentation>
|
26
|
|
27
|
|
28
|
</xs:annotation>
|
29
|
|
30
|
|
31
|
<xs:simpleType name="DCMIType">
|
32
|
<xs:union>
|
33
|
<xs:simpleType>
|
34
|
<xs:restriction base="xs:Name">
|
35
|
<xs:enumeration value="Collection"/>
|
36
|
<xs:enumeration value="Dataset"/>
|
37
|
<xs:enumeration value="Event"/>
|
38
|
<xs:enumeration value="Image"/>
|
39
|
<xs:enumeration value="MovingImage"/>
|
40
|
<xs:enumeration value="StillImage"/>
|
41
|
<xs:enumeration value="InteractiveResource"/>
|
42
|
<xs:enumeration value="Service"/>
|
43
|
<xs:enumeration value="Software"/>
|
44
|
<xs:enumeration value="Sound"/>
|
45
|
<xs:enumeration value="Text"/>
|
46
|
<xs:enumeration value="PhysicalObject"/>
|
47
|
</xs:restriction>
|
48
|
</xs:simpleType>
|
49
|
</xs:union>
|
50
|
</xs:simpleType>
|
51
|
|
52
|
</xs:schema>
|