-
Notifications
You must be signed in to change notification settings - Fork 0
/
toolkit.xsd
executable file
·37 lines (32 loc) · 1.39 KB
/
toolkit.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:toolkit="http://oai.dlib.vt.edu/OAI/metadata/toolkit"
targetNamespace="http://oai.dlib.vt.edu/OAI/metadata/toolkit"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<annotation>
<documentation>
Schema for OAI toolkit information
Hussein Suleman {[email protected]}
Virginia Tech DLRL
7 October 2002 [revision] added toolkitIcon
28 March 2002 [first release]
</documentation>
</annotation>
<element name="toolkit" type="toolkit:toolkitType"/>
<complexType name="toolkitType">
<sequence>
<element name="title" minOccurs="0" maxOccurs="1" type="string"/>
<element name="author" minOccurs="0" maxOccurs="1" type="toolkit:authorType"/>
<element name="version" minOccurs="0" maxOccurs="1" type="string"/>
<element name="toolkitIcon" minOccurs="0" maxOccurs="1" type="anyURI"/>
<element name="URL" minOccurs="0" maxOccurs="1" type="anyURI"/>
</sequence>
</complexType>
<complexType name="authorType">
<sequence>
<element name="name" minOccurs="0" maxOccurs="1" type="string"/>
<element name="email" minOccurs="0" maxOccurs="1" type="string"/>
<element name="institution" minOccurs="0" maxOccurs="1" type="string"/>
</sequence>
</complexType>
</schema>