scorm 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +19 -0
- data/bin/scorm +13 -0
- data/examples/example/README +15 -0
- data/examples/example/adlcp_rootv1p2.xsd +110 -0
- data/examples/example/example.html +10 -0
- data/examples/example/images/large/example.png +0 -0
- data/examples/example/ims_xml.xsd +1 -0
- data/examples/example/imscp_rootv1p1p2.xsd +345 -0
- data/examples/example/imsmanifest.xml +45 -0
- data/examples/example/imsmd_rootv1p2p1.xsd +573 -0
- data/lib/scorm.rb +5 -0
- data/lib/scorm/command.rb +63 -0
- data/lib/scorm/commands/base.rb +53 -0
- data/lib/scorm/commands/bundle.rb +29 -0
- data/lib/scorm/commands/check.rb +45 -0
- data/lib/scorm/commands/create.rb +15 -0
- data/lib/scorm/commands/extract.rb +12 -0
- data/lib/scorm/commands/help.rb +80 -0
- data/lib/scorm/commands/version.rb +7 -0
- data/lib/scorm/datatypes.rb +57 -0
- data/lib/scorm/manifest.rb +154 -0
- data/lib/scorm/metadata.rb +100 -0
- data/lib/scorm/organization.rb +77 -0
- data/lib/scorm/package.rb +210 -0
- data/lib/scorm/resource.rb +49 -0
- data/skeleton/adlcp_rootv1p2.xsd +110 -0
- data/skeleton/ims_xml.xsd +1 -0
- data/skeleton/imscp_rootv1p1p2.xsd +345 -0
- data/skeleton/imsmanifest.xml +45 -0
- data/skeleton/imsmd_rootv1p2p1.xsd +573 -0
- metadata +111 -0
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><!-- filename=ims_xml.xsd --><xsd:schema xmlns="http://www.w3.org/XML/1998/namespace" targetNamespace="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <!-- 2001-02-22 edited by Thomas Wason IMS Global Learning Consortium, Inc. --> <xsd:annotation> <xsd:documentation>In namespace-aware XML processors, the "xml" prefix is bound to the namespace name http://www.w3.org/XML/1998/namespace.</xsd:documentation> <xsd:documentation>Do not reference this file in XML instances</xsd:documentation> <xsd:documentation>Schawn Thropp: Changed the uriReference type to string type</xsd:documentation> </xsd:annotation> <xsd:attribute name="lang" type="xsd:language"> <xsd:annotation> <xsd:documentation>Refers to universal XML 1.0 lang attribute</xsd:documentation> </xsd:annotation> </xsd:attribute> <xsd:attribute name="base" type="xsd:string"> <xsd:annotation> <xsd:documentation>Refers to XML Base: http://www.w3.org/TR/xmlbase</xsd:documentation> </xsd:annotation> </xsd:attribute> <xsd:attribute name="link" type="xsd:string"/></xsd:schema>
|
@@ -0,0 +1,345 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
|
3
|
+
<!-- edited with XML Spy v3.5 (http://www.xmlspy.com) by Thomas Wason (private) -->
|
4
|
+
<!-- filename=ims_cp_rootv1p1p2.xsd -->
|
5
|
+
<!-- Copyright (2) 2001 IMS Global Learning Consortium, Inc. -->
|
6
|
+
<!-- edited by Thomas Wason -->
|
7
|
+
<!-- Conforms to w3c http://www.w3.org/TR/xmlschema-1/ 2000-10-24-->
|
8
|
+
|
9
|
+
<xsd:schema xmlns="http://www.imsproject.org/xsd/imscp_rootv1p1p2"
|
10
|
+
targetNamespace="http://www.imsproject.org/xsd/imscp_rootv1p1p2"
|
11
|
+
xmlns:xml="http://www.w3.org/XML/1998/namespace"
|
12
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
13
|
+
elementFormDefault="unqualified" version="IMS CP 1.1.2">
|
14
|
+
|
15
|
+
<!-- ******************** -->
|
16
|
+
<!-- ** Change History ** -->
|
17
|
+
<!-- ******************** -->
|
18
|
+
<xsd:annotation>
|
19
|
+
<xsd:documentation xml:lang="en">DRAFT XSD for IMS Content Packaging version 1.1 DRAFT</xsd:documentation>
|
20
|
+
<xsd:documentation> Copyright (c) 2001 IMS GLC, Inc. </xsd:documentation>
|
21
|
+
<xsd:documentation>2000-04-21, Adjustments by T.D. Wason from CP 1.0.</xsd:documentation>
|
22
|
+
<xsd:documentation>2001-02-22, T.D.Wason: Modify for 2000-10-24 XML-Schema version. Modified to support extension.</xsd:documentation>
|
23
|
+
<xsd:documentation>2001-03-12, T.D.Wason: Change filename, target and meta-data namespaces and meta-data fielname. Add meta-data to itemType, fileType and organizationType.</xsd:documentation>
|
24
|
+
<xsd:documentation>Do not define namespaces for xml in XML instances generated from this xsd.</xsd:documentation>
|
25
|
+
<xsd:documentation>Imports IMS meta-data xsd, lower case element names. </xsd:documentation>
|
26
|
+
<xsd:documentation>This XSD provides a reference to the IMS meta-data root element as imsmd:record</xsd:documentation>
|
27
|
+
<xsd:documentation>If the IMS meta-data is to be used in the XML instance then the instance must define an IMS meta-data prefix with a namespace. The meta-data targetNamespace should be used. </xsd:documentation>
|
28
|
+
<xsd:documentation>2001-03-20, Thor Anderson: Remove manifestref, change resourceref back to identifierref, change manifest back to contained by manifest. --Tom Wason: manifest may contain _none_ or more manifests.</xsd:documentation>
|
29
|
+
<xsd:documentation>2001-04-13 Tom Wason: corrected attirbute name structure. Was misnamed type. </xsd:documentation>
|
30
|
+
<xsd:documentation>2001-05-14 Schawn Thropp: Made all complexType extensible with the group.any</xsd:documentation>
|
31
|
+
<xsd:documentation>Added the anyAttribute to all complexTypes. Changed the href attribute on the fileType and resourceType to xsd:string</xsd:documentation>
|
32
|
+
<xsd:documentation>Changed the maxLength of the href, identifierref, parameters, structure attributes to match the Information model.</xsd:documentation>
|
33
|
+
<xsd:documentation>2001-07-25 Schawn Thropp: Changed the namespace for the Schema of Schemas to the 5/2/2001 W3C XML Schema</xsd:documentation>
|
34
|
+
<xsd:documentation>Recommendation. attributeGroup attr.imsmd deleted, was not used anywhere. Any attribute declarations that have</xsd:documentation>
|
35
|
+
<xsd:documentation>use = "default" changed to use="optional" - attr.structure.req.</xsd:documentation>
|
36
|
+
<xsd:documentation>Any attribute declarations that have value="somevalue" changed to default="somevalue",</xsd:documentation>
|
37
|
+
<xsd:documentation>attr.structure.req (hierarchical). Removed references to IMS MD Version 1.1.</xsd:documentation>
|
38
|
+
<xsd:documentation>Modified attribute group "attr.resourcetype.req" to change use from optional</xsd:documentation>
|
39
|
+
<xsd:documentation>to required to match the information model. As a result the default value also needed to be removed</xsd:documentation>
|
40
|
+
<xsd:documentation>Name change for XSD. Changed to match version of CP Spec </xsd:documentation>
|
41
|
+
</xsd:annotation>
|
42
|
+
|
43
|
+
<xsd:annotation>
|
44
|
+
<xsd:documentation>Inclusions and Imports</xsd:documentation>
|
45
|
+
</xsd:annotation>
|
46
|
+
|
47
|
+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="ims_xml.xsd"/>
|
48
|
+
|
49
|
+
<xsd:annotation>
|
50
|
+
<xsd:documentation>Attribute Declarations</xsd:documentation>
|
51
|
+
</xsd:annotation>
|
52
|
+
|
53
|
+
<!-- **************************** -->
|
54
|
+
<!-- ** Attribute Declarations ** -->
|
55
|
+
<!-- **************************** -->
|
56
|
+
<xsd:attributeGroup name="attr.base">
|
57
|
+
<xsd:attribute ref="xml:base" use="optional"/>
|
58
|
+
</xsd:attributeGroup>
|
59
|
+
|
60
|
+
<xsd:attributeGroup name="attr.default">
|
61
|
+
<xsd:attribute name="default" type="xsd:IDREF" use="optional"/>
|
62
|
+
</xsd:attributeGroup>
|
63
|
+
|
64
|
+
<xsd:attributeGroup name="attr.href">
|
65
|
+
<xsd:attribute name="href" use="optional">
|
66
|
+
<xsd:simpleType>
|
67
|
+
<xsd:restriction base="xsd:anyURI">
|
68
|
+
<xsd:maxLength value="2000"/>
|
69
|
+
</xsd:restriction>
|
70
|
+
</xsd:simpleType>
|
71
|
+
</xsd:attribute>
|
72
|
+
</xsd:attributeGroup>
|
73
|
+
|
74
|
+
<xsd:attributeGroup name="attr.href.req">
|
75
|
+
<xsd:attribute name="href" use="required">
|
76
|
+
<xsd:simpleType>
|
77
|
+
<xsd:restriction base="xsd:anyURI">
|
78
|
+
<xsd:maxLength value="2000"/>
|
79
|
+
</xsd:restriction>
|
80
|
+
</xsd:simpleType>
|
81
|
+
</xsd:attribute>
|
82
|
+
</xsd:attributeGroup>
|
83
|
+
|
84
|
+
<xsd:attributeGroup name="attr.identifier.req">
|
85
|
+
<xsd:attribute name="identifier" type="xsd:ID" use="required"/>
|
86
|
+
</xsd:attributeGroup>
|
87
|
+
|
88
|
+
<xsd:attributeGroup name="attr.identifier">
|
89
|
+
<xsd:attribute name="identifier" type="xsd:ID" use="optional"/>
|
90
|
+
</xsd:attributeGroup>
|
91
|
+
|
92
|
+
<xsd:attributeGroup name="attr.isvisible">
|
93
|
+
<xsd:attribute name="isvisible" type="xsd:boolean" use="optional"/>
|
94
|
+
</xsd:attributeGroup>
|
95
|
+
|
96
|
+
<xsd:attributeGroup name="attr.parameters">
|
97
|
+
<xsd:attribute name="parameters" use="optional">
|
98
|
+
<xsd:simpleType>
|
99
|
+
<xsd:restriction base="xsd:string">
|
100
|
+
<xsd:maxLength value="1000"/>
|
101
|
+
</xsd:restriction>
|
102
|
+
</xsd:simpleType>
|
103
|
+
</xsd:attribute>
|
104
|
+
</xsd:attributeGroup>
|
105
|
+
|
106
|
+
<xsd:attributeGroup name="attr.identifierref">
|
107
|
+
<xsd:attribute name="identifierref" use="optional">
|
108
|
+
<xsd:simpleType>
|
109
|
+
<xsd:restriction base="xsd:string">
|
110
|
+
<xsd:maxLength value="2000"/>
|
111
|
+
</xsd:restriction>
|
112
|
+
</xsd:simpleType>
|
113
|
+
</xsd:attribute>
|
114
|
+
</xsd:attributeGroup>
|
115
|
+
|
116
|
+
<xsd:attributeGroup name="attr.identifierref.req">
|
117
|
+
<xsd:attribute name="identifierref" use="required">
|
118
|
+
<xsd:simpleType>
|
119
|
+
<xsd:restriction base="xsd:string">
|
120
|
+
<xsd:maxLength value="2000"/>
|
121
|
+
</xsd:restriction>
|
122
|
+
</xsd:simpleType>
|
123
|
+
</xsd:attribute>
|
124
|
+
</xsd:attributeGroup>
|
125
|
+
|
126
|
+
<xsd:attributeGroup name="attr.resourcetype.req">
|
127
|
+
<xsd:attribute name="type" use="required">
|
128
|
+
<xsd:simpleType>
|
129
|
+
<xsd:restriction base="xsd:string">
|
130
|
+
<xsd:maxLength value="1000"/>
|
131
|
+
</xsd:restriction>
|
132
|
+
</xsd:simpleType>
|
133
|
+
</xsd:attribute>
|
134
|
+
</xsd:attributeGroup>
|
135
|
+
|
136
|
+
<xsd:attributeGroup name="attr.structure.req">
|
137
|
+
<xsd:attribute name="structure" use="optional" default="hierarchical">
|
138
|
+
<xsd:simpleType>
|
139
|
+
<xsd:restriction base="xsd:string">
|
140
|
+
<xsd:maxLength value="200"/>
|
141
|
+
</xsd:restriction>
|
142
|
+
</xsd:simpleType>
|
143
|
+
</xsd:attribute>
|
144
|
+
</xsd:attributeGroup>
|
145
|
+
|
146
|
+
<xsd:attributeGroup name="attr.version">
|
147
|
+
<xsd:attribute name="version" use="optional">
|
148
|
+
<xsd:simpleType>
|
149
|
+
<xsd:restriction base="xsd:string">
|
150
|
+
<xsd:maxLength value="20"/>
|
151
|
+
</xsd:restriction>
|
152
|
+
</xsd:simpleType>
|
153
|
+
</xsd:attribute>
|
154
|
+
</xsd:attributeGroup>
|
155
|
+
|
156
|
+
<xsd:annotation>
|
157
|
+
<xsd:documentation>element groups</xsd:documentation>
|
158
|
+
</xsd:annotation>
|
159
|
+
|
160
|
+
<xsd:group name="grp.any">
|
161
|
+
<xsd:annotation>
|
162
|
+
<xsd:documentation>Any namespaced element from any namespace may be included within an "any" element. The namespace for the imported element must be defined in the instance, and the schema must be imported. </xsd:documentation>
|
163
|
+
</xsd:annotation>
|
164
|
+
<xsd:sequence>
|
165
|
+
<xsd:any namespace="##other" processContents="strict" minOccurs="0" maxOccurs="unbounded"/>
|
166
|
+
</xsd:sequence>
|
167
|
+
</xsd:group>
|
168
|
+
|
169
|
+
<!-- ************************** -->
|
170
|
+
<!-- ** Element Declarations ** -->
|
171
|
+
<!-- ************************** -->
|
172
|
+
|
173
|
+
<xsd:element name="dependency" type="dependencyType"/>
|
174
|
+
<xsd:element name="file" type="fileType"/>
|
175
|
+
<xsd:element name="item" type="itemType"/>
|
176
|
+
<xsd:element name="manifest" type="manifestType"/>
|
177
|
+
<xsd:element name="metadata" type="metadataType"/>
|
178
|
+
<xsd:element name="organization" type="organizationType"/>
|
179
|
+
<xsd:element name="organizations" type="organizationsType"/>
|
180
|
+
<xsd:element name="resource" type="resourceType"/>
|
181
|
+
<xsd:element name="resources" type="resourcesType"/>
|
182
|
+
<xsd:element name="schema" type="schemaType"/>
|
183
|
+
<xsd:element name="schemaversion" type="schemaversionType"/>
|
184
|
+
<xsd:element name="title" type="titleType"/>
|
185
|
+
|
186
|
+
<!-- ******************* -->
|
187
|
+
<!-- ** Complex Types ** -->
|
188
|
+
<!-- ******************* -->
|
189
|
+
|
190
|
+
<!-- **************** -->
|
191
|
+
<!-- ** dependency ** -->
|
192
|
+
<!-- **************** -->
|
193
|
+
<xsd:complexType name="dependencyType">
|
194
|
+
<xsd:sequence>
|
195
|
+
<xsd:group ref="grp.any"/>
|
196
|
+
</xsd:sequence>
|
197
|
+
<xsd:attributeGroup ref="attr.identifierref.req"/>
|
198
|
+
<xsd:anyAttribute namespace="##other" processContents="strict"/>
|
199
|
+
</xsd:complexType>
|
200
|
+
|
201
|
+
<!-- ********** -->
|
202
|
+
<!-- ** file ** -->
|
203
|
+
<!-- ********** -->
|
204
|
+
<xsd:complexType name="fileType">
|
205
|
+
<xsd:sequence>
|
206
|
+
<xsd:element ref="metadata" minOccurs="0"/>
|
207
|
+
<xsd:group ref="grp.any"/>
|
208
|
+
</xsd:sequence>
|
209
|
+
<xsd:attributeGroup ref="attr.href.req"/>
|
210
|
+
<xsd:anyAttribute namespace="##other" processContents="strict"/>
|
211
|
+
</xsd:complexType>
|
212
|
+
|
213
|
+
<!-- ********** -->
|
214
|
+
<!-- ** item ** -->
|
215
|
+
<!-- ********** -->
|
216
|
+
<xsd:complexType name="itemType">
|
217
|
+
<xsd:sequence>
|
218
|
+
<xsd:element ref="title" minOccurs="0"/>
|
219
|
+
<xsd:element ref="item" minOccurs="0" maxOccurs="unbounded"/>
|
220
|
+
<xsd:element ref="metadata" minOccurs="0"/>
|
221
|
+
<xsd:group ref="grp.any"/>
|
222
|
+
</xsd:sequence>
|
223
|
+
<xsd:attributeGroup ref="attr.identifier.req"/>
|
224
|
+
<xsd:attributeGroup ref="attr.identifierref"/>
|
225
|
+
<xsd:attributeGroup ref="attr.isvisible"/>
|
226
|
+
<xsd:attributeGroup ref="attr.parameters"/>
|
227
|
+
<xsd:anyAttribute namespace="##other" processContents="strict"/>
|
228
|
+
</xsd:complexType>
|
229
|
+
|
230
|
+
<!-- ************** -->
|
231
|
+
<!-- ** manifest ** -->
|
232
|
+
<!-- ************** -->
|
233
|
+
<xsd:complexType name="manifestType">
|
234
|
+
<xsd:sequence>
|
235
|
+
<xsd:element ref="metadata" minOccurs="0"/>
|
236
|
+
<xsd:element ref="organizations"/>
|
237
|
+
<xsd:element ref="resources"/>
|
238
|
+
<xsd:element ref="manifest" minOccurs="0" maxOccurs="unbounded"/>
|
239
|
+
<xsd:group ref="grp.any"/>
|
240
|
+
</xsd:sequence>
|
241
|
+
<xsd:attributeGroup ref="attr.identifier.req"/>
|
242
|
+
<xsd:attributeGroup ref="attr.version"/>
|
243
|
+
<xsd:attribute ref="xml:base"/>
|
244
|
+
<xsd:anyAttribute namespace="##other" processContents="strict"/>
|
245
|
+
</xsd:complexType>
|
246
|
+
|
247
|
+
<!-- ************** -->
|
248
|
+
<!-- ** metadata ** -->
|
249
|
+
<!-- ************** -->
|
250
|
+
<xsd:complexType name="metadataType">
|
251
|
+
<xsd:sequence>
|
252
|
+
<xsd:element ref="schema" minOccurs="0"/>
|
253
|
+
<xsd:element ref="schemaversion" minOccurs="0"/>
|
254
|
+
<xsd:group ref="grp.any"/>
|
255
|
+
</xsd:sequence>
|
256
|
+
</xsd:complexType>
|
257
|
+
|
258
|
+
<!-- ******************* -->
|
259
|
+
<!-- ** organizations ** -->
|
260
|
+
<!-- ******************* -->
|
261
|
+
<xsd:complexType name="organizationsType">
|
262
|
+
<xsd:sequence>
|
263
|
+
<xsd:element ref="organization" minOccurs="0" maxOccurs="unbounded"/>
|
264
|
+
<xsd:group ref="grp.any"/>
|
265
|
+
</xsd:sequence>
|
266
|
+
<xsd:attributeGroup ref="attr.default"/>
|
267
|
+
<xsd:anyAttribute namespace="##other" processContents="strict"/>
|
268
|
+
</xsd:complexType>
|
269
|
+
|
270
|
+
<!-- ****************** -->
|
271
|
+
<!-- ** organization ** -->
|
272
|
+
<!-- ****************** -->
|
273
|
+
<xsd:complexType name="organizationType">
|
274
|
+
<xsd:sequence>
|
275
|
+
<xsd:element ref="title" minOccurs="0"/>
|
276
|
+
<xsd:element ref="item" minOccurs="0" maxOccurs="unbounded"/>
|
277
|
+
<xsd:element ref="metadata" minOccurs="0"/>
|
278
|
+
<xsd:group ref="grp.any"/>
|
279
|
+
</xsd:sequence>
|
280
|
+
<xsd:attributeGroup ref="attr.identifier.req"/>
|
281
|
+
<xsd:attributeGroup ref="attr.structure.req"/>
|
282
|
+
<xsd:anyAttribute namespace="##other" processContents="strict"/>
|
283
|
+
</xsd:complexType>
|
284
|
+
|
285
|
+
<!-- *************** -->
|
286
|
+
<!-- ** resources ** -->
|
287
|
+
<!-- *************** -->
|
288
|
+
<xsd:complexType name="resourcesType">
|
289
|
+
<xsd:sequence>
|
290
|
+
<xsd:element ref="resource" minOccurs="0" maxOccurs="unbounded"/>
|
291
|
+
<xsd:group ref="grp.any"/>
|
292
|
+
</xsd:sequence>
|
293
|
+
<xsd:attributeGroup ref="attr.base"/>
|
294
|
+
<xsd:anyAttribute namespace="##other" processContents="strict"/>
|
295
|
+
</xsd:complexType>
|
296
|
+
|
297
|
+
<!-- ************** -->
|
298
|
+
<!-- ** resource ** -->
|
299
|
+
<!-- ************** -->
|
300
|
+
<xsd:complexType name="resourceType">
|
301
|
+
<xsd:sequence>
|
302
|
+
<xsd:element ref="metadata" minOccurs="0"/>
|
303
|
+
<xsd:element ref="file" minOccurs="0" maxOccurs="unbounded"/>
|
304
|
+
<xsd:element ref="dependency" minOccurs="0" maxOccurs="unbounded"/>
|
305
|
+
<xsd:group ref="grp.any"/>
|
306
|
+
</xsd:sequence>
|
307
|
+
<xsd:attributeGroup ref="attr.identifier.req"/>
|
308
|
+
<xsd:attributeGroup ref="attr.resourcetype.req"/>
|
309
|
+
<xsd:attributeGroup ref="attr.base"/>
|
310
|
+
<xsd:attributeGroup ref="attr.href"/>
|
311
|
+
<xsd:anyAttribute namespace="##other" processContents="strict"/>
|
312
|
+
</xsd:complexType>
|
313
|
+
|
314
|
+
<!-- ****************** -->
|
315
|
+
<!-- ** Simple Types ** -->
|
316
|
+
<!-- ****************** -->
|
317
|
+
|
318
|
+
<!-- ************ -->
|
319
|
+
<!-- ** schema ** -->
|
320
|
+
<!-- ************ -->
|
321
|
+
<xsd:simpleType name="schemaType">
|
322
|
+
<xsd:restriction base="xsd:string">
|
323
|
+
<xsd:maxLength value="100"/>
|
324
|
+
</xsd:restriction>
|
325
|
+
</xsd:simpleType>
|
326
|
+
|
327
|
+
<!-- ******************* -->
|
328
|
+
<!-- ** schemaversion ** -->
|
329
|
+
<!-- ******************* -->
|
330
|
+
<xsd:simpleType name="schemaversionType">
|
331
|
+
<xsd:restriction base="xsd:string">
|
332
|
+
<xsd:maxLength value="20"/>
|
333
|
+
</xsd:restriction>
|
334
|
+
</xsd:simpleType>
|
335
|
+
|
336
|
+
<!-- *********** -->
|
337
|
+
<!-- ** title ** -->
|
338
|
+
<!-- *********** -->
|
339
|
+
<xsd:simpleType name="titleType">
|
340
|
+
<xsd:restriction base="xsd:string">
|
341
|
+
<xsd:maxLength value="200"/>
|
342
|
+
</xsd:restriction>
|
343
|
+
</xsd:simpleType>
|
344
|
+
|
345
|
+
</xsd:schema>
|
@@ -0,0 +1,45 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<manifest identifier="{{Package_ID}}" version="1.0" xmlns="http://www.imsproject.org/xsd/imscp_rootv1p1p2" xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.imsproject.org/xsd/imscp_rootv1p1p2 imscp_rootv1p1p2.xsd http://www.imsglobal.org/xsd/imsmd_rootv1p2p1 imsmd_rootv1p2p1.xsd http://www.adlnet.org/xsd/adlcp_rootv1p2 adlcp_rootv1p2.xsd">
|
3
|
+
<metadata>
|
4
|
+
<schema>ADL SCORM</schema>
|
5
|
+
<schemaversion>1.2</schemaversion>
|
6
|
+
<lom xmlns="http://www.imsglobal.org/xsd/imsmd_rootv1p2p1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.imsglobal.org/xsd/imsmd_rootv1p2p1 imsmd_rootv1p2p1.xsd">
|
7
|
+
<general>
|
8
|
+
<title>
|
9
|
+
<langstring xml:lang="x-none">{{title}}</langstring>
|
10
|
+
</title>
|
11
|
+
</general>
|
12
|
+
<lifecycle>
|
13
|
+
<version>
|
14
|
+
<langstring xml:lang="x-none">1.0</langstring>
|
15
|
+
</version>
|
16
|
+
<status>
|
17
|
+
<source>
|
18
|
+
<langstring xml:lang="x-none">LOMv1.0</langstring>
|
19
|
+
</source>
|
20
|
+
<value>
|
21
|
+
<langstring xml:lang="x-none">Final</langstring>
|
22
|
+
</value>
|
23
|
+
</status>
|
24
|
+
</lifecycle>
|
25
|
+
<metametadata>
|
26
|
+
<metadatascheme>ADL SCORM 1.2</metadatascheme>
|
27
|
+
</metametadata>
|
28
|
+
</lom>
|
29
|
+
</metadata>
|
30
|
+
<organizations default="ORG">
|
31
|
+
<organization identifier="ORG">
|
32
|
+
<title>{{title}}</title>
|
33
|
+
<item identifier="SCO" isvisible="true" identifierref="RES">
|
34
|
+
<title>{{title}}</title>
|
35
|
+
<adlcp:masteryscore />
|
36
|
+
</item>
|
37
|
+
</organization>
|
38
|
+
</organizations>
|
39
|
+
<resources>
|
40
|
+
<resource identifier="RES" type="webcontent" href="{{example}}.html" adlcp:scormtype="sco">
|
41
|
+
<file href="{{example}}.html"/>
|
42
|
+
<file href="{{example}}.jpg"/>
|
43
|
+
</resource>
|
44
|
+
</resources>
|
45
|
+
</manifest>
|
@@ -0,0 +1,573 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- edited by Thomas Wason -->
|
3
|
+
<xsd:schema targetNamespace="http://www.imsglobal.org/xsd/imsmd_rootv1p2p1"
|
4
|
+
xmlns:xml="http://www.w3.org/XML/1998/namespace"
|
5
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
6
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
7
|
+
xmlns="http://www.imsglobal.org/xsd/imsmd_rootv1p2p1"
|
8
|
+
elementFormDefault="qualified"
|
9
|
+
version="1.2:1.1 IMS:MD1.2">
|
10
|
+
|
11
|
+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="ims_xml.xsd"/>
|
12
|
+
|
13
|
+
<!-- ******************** -->
|
14
|
+
<!-- ** Change History ** -->
|
15
|
+
<!-- ******************** -->
|
16
|
+
<xsd:annotation>
|
17
|
+
<xsd:documentation>2001-04-26 T.D.Wason. IMS meta-data 1.2 XML-Schema. </xsd:documentation>
|
18
|
+
<xsd:documentation>2001-06-07 S.E.Thropp. Changed the multiplicity on all elements to match the </xsd:documentation>
|
19
|
+
<xsd:documentation>Final 1.2 Binding Specification. </xsd:documentation>
|
20
|
+
<xsd:documentation>Changed all elements that use the langstringType to a multiplicy of 1 or more </xsd:documentation>
|
21
|
+
<xsd:documentation>Changed centity in the contribute element to have a multiplicity of 0 or more. </xsd:documentation>
|
22
|
+
<xsd:documentation>Changed the requirement element to have a multiplicity of 0 or more. </xsd:documentation>
|
23
|
+
<xsd:documentation> 2001-07-25 Schawn Thropp. Updates to bring the XSD up to speed with the W3C </xsd:documentation>
|
24
|
+
<xsd:documentation> XML Schema Recommendation. The following changes were made: Change the </xsd:documentation>
|
25
|
+
<xsd:documentation> namespace to reference the 5/2/2001 W3C XML Schema Recommendation,the base </xsd:documentation>
|
26
|
+
<xsd:documentation> type for the durtimeType, simpleType, was changed from timeDuration to duration. </xsd:documentation>
|
27
|
+
<xsd:documentation> Any attribute declarations that have use="default" had to change to use="optional" </xsd:documentation>
|
28
|
+
<xsd:documentation> - attr.type. Any attribute declarations that have value ="somevalue" had to change </xsd:documentation>
|
29
|
+
<xsd:documentation> to default = "somevalue" - attr.type (URI) </xsd:documentation>
|
30
|
+
<xsd:documentation> 2001-09-04 Schawn Thropp </xsd:documentation>
|
31
|
+
<xsd:documentation> Changed the targetNamespace and namespace of schema to reflect version change </xsd:documentation>
|
32
|
+
</xsd:annotation>
|
33
|
+
|
34
|
+
<!-- *************************** -->
|
35
|
+
<!-- ** Attribute Declaration ** -->
|
36
|
+
<!-- *************************** -->
|
37
|
+
|
38
|
+
<xsd:attributeGroup name="attr.type">
|
39
|
+
<xsd:attribute name="type" use="optional" default="URI">
|
40
|
+
<xsd:simpleType>
|
41
|
+
<xsd:restriction base="xsd:string">
|
42
|
+
<xsd:enumeration value="URI"/>
|
43
|
+
<xsd:enumeration value="TEXT"/>
|
44
|
+
</xsd:restriction>
|
45
|
+
</xsd:simpleType>
|
46
|
+
</xsd:attribute>
|
47
|
+
</xsd:attributeGroup>
|
48
|
+
|
49
|
+
<xsd:group name="grp.any">
|
50
|
+
<xsd:annotation>
|
51
|
+
<xsd:documentation>Any namespaced element from any namespace may be used for an "any" element. The namespace for the imported element must be defined in the instance, and the schema must be imported. </xsd:documentation>
|
52
|
+
</xsd:annotation>
|
53
|
+
<xsd:sequence>
|
54
|
+
<xsd:any namespace="##any" processContents="strict" minOccurs="0" maxOccurs="unbounded"/>
|
55
|
+
</xsd:sequence>
|
56
|
+
</xsd:group>
|
57
|
+
|
58
|
+
<!-- ************************* -->
|
59
|
+
<!-- ** Element Declaration ** -->
|
60
|
+
<!-- ************************* -->
|
61
|
+
|
62
|
+
<xsd:element name="aggregationlevel" type="aggregationlevelType"/>
|
63
|
+
<xsd:element name="annotation" type="annotationType"/>
|
64
|
+
<xsd:element name="catalogentry" type="catalogentryType"/>
|
65
|
+
<xsd:element name="catalog" type="catalogType"/>
|
66
|
+
<xsd:element name="centity" type="centityType"/>
|
67
|
+
<xsd:element name="classification" type="classificationType"/>
|
68
|
+
<xsd:element name="context" type="contextType"/>
|
69
|
+
<xsd:element name="contribute" type="contributeType"/>
|
70
|
+
<xsd:element name="copyrightandotherrestrictions" type="copyrightandotherrestrictionsType"/>
|
71
|
+
<xsd:element name="cost" type="costType"/>
|
72
|
+
<xsd:element name="coverage" type="coverageType"/>
|
73
|
+
<xsd:element name="date" type="dateType"/>
|
74
|
+
<xsd:element name="datetime" type="datetimeType"/>
|
75
|
+
<xsd:element name="description" type="descriptionType"/>
|
76
|
+
<xsd:element name="difficulty" type="difficultyType"/>
|
77
|
+
<xsd:element name="educational" type="educationalType"/>
|
78
|
+
<xsd:element name="entry" type="entryType"/>
|
79
|
+
<xsd:element name="format" type="formatType"/>
|
80
|
+
<xsd:element name="general" type="generalType"/>
|
81
|
+
<xsd:element name="identifier" type="xsd:string"/>
|
82
|
+
<xsd:element name="intendedenduserrole" type="intendedenduserroleType"/>
|
83
|
+
<xsd:element name="interactivitylevel" type="interactivitylevelType"/>
|
84
|
+
<xsd:element name="interactivitytype" type="interactivitytypeType"/>
|
85
|
+
<xsd:element name="keyword" type="keywordType"/>
|
86
|
+
<xsd:element name="kind" type="kindType"/>
|
87
|
+
<xsd:element name="langstring" type="langstringType"/>
|
88
|
+
<xsd:element name="language" type="xsd:string"/>
|
89
|
+
<xsd:element name="learningresourcetype" type="learningresourcetypeType"/>
|
90
|
+
<xsd:element name="lifecycle" type="lifecycleType"/>
|
91
|
+
<xsd:element name="location" type="locationType"/>
|
92
|
+
<xsd:element name="lom" type="lomType"/>
|
93
|
+
<xsd:element name="maximumversion" type="minimumversionType"/>
|
94
|
+
<xsd:element name="metadatascheme" type="metadataschemeType"/>
|
95
|
+
<xsd:element name="metametadata" type="metametadataType"/>
|
96
|
+
<xsd:element name="minimumversion" type="maximumversionType"/>
|
97
|
+
<xsd:element name="name" type="nameType"/>
|
98
|
+
<xsd:element name="purpose" type="purposeType"/>
|
99
|
+
<xsd:element name="relation" type="relationType"/>
|
100
|
+
<xsd:element name="requirement" type="requirementType"/>
|
101
|
+
<xsd:element name="resource" type="resourceType"/>
|
102
|
+
<xsd:element name="rights" type="rightsType"/>
|
103
|
+
<xsd:element name="role" type="roleType"/>
|
104
|
+
<xsd:element name="semanticdensity" type="semanticdensityType"/>
|
105
|
+
<xsd:element name="size" type="sizeType"/>
|
106
|
+
<xsd:element name="source" type="sourceType"/>
|
107
|
+
<xsd:element name="status" type="statusType"/>
|
108
|
+
<xsd:element name="structure" type="structureType"/>
|
109
|
+
<xsd:element name="taxon" type="taxonType"/>
|
110
|
+
<xsd:element name="taxonpath" type="taxonpathType"/>
|
111
|
+
<xsd:element name="technical" type="technicalType"/>
|
112
|
+
<xsd:element name="title" type="titleType"/>
|
113
|
+
<xsd:element name="type" type="typeType"/>
|
114
|
+
<xsd:element name="typicalagerange" type="typicalagerangeType"/>
|
115
|
+
<xsd:element name="typicallearningtime" type="typicallearningtimeType"/>
|
116
|
+
<xsd:element name="value" type="valueType"/>
|
117
|
+
<xsd:element name="person" type="personType"/>
|
118
|
+
<xsd:element name="vcard" type="xsd:string"/>
|
119
|
+
<xsd:element name="version" type="versionType"/>
|
120
|
+
<xsd:element name="installationremarks" type="installationremarksType"/>
|
121
|
+
<xsd:element name="otherplatformrequirements" type="otherplatformrequirementsType"/>
|
122
|
+
<xsd:element name="duration" type="durationType"/>
|
123
|
+
<xsd:element name="id" type="idType"/>
|
124
|
+
|
125
|
+
<!-- ******************* -->
|
126
|
+
<!-- ** Complex Types ** -->
|
127
|
+
<!-- ******************* -->
|
128
|
+
|
129
|
+
<xsd:complexType name="aggregationlevelType">
|
130
|
+
<xsd:sequence>
|
131
|
+
<xsd:element ref="source"/>
|
132
|
+
<xsd:element ref="value"/>
|
133
|
+
</xsd:sequence>
|
134
|
+
</xsd:complexType>
|
135
|
+
|
136
|
+
<xsd:complexType name="annotationType" mixed="true">
|
137
|
+
<xsd:sequence>
|
138
|
+
<xsd:element ref="person" minOccurs="0"/>
|
139
|
+
<xsd:element ref="date" minOccurs="0"/>
|
140
|
+
<xsd:element ref="description" minOccurs="0"/>
|
141
|
+
<xsd:group ref="grp.any"/>
|
142
|
+
</xsd:sequence>
|
143
|
+
</xsd:complexType>
|
144
|
+
|
145
|
+
<xsd:complexType name="catalogentryType" mixed="true">
|
146
|
+
<xsd:sequence>
|
147
|
+
<xsd:element ref="catalog"/>
|
148
|
+
<xsd:element ref="entry"/>
|
149
|
+
<xsd:group ref="grp.any"/>
|
150
|
+
</xsd:sequence>
|
151
|
+
</xsd:complexType>
|
152
|
+
|
153
|
+
<xsd:complexType name="centityType">
|
154
|
+
<xsd:sequence>
|
155
|
+
<xsd:element ref="vcard"/>
|
156
|
+
</xsd:sequence>
|
157
|
+
</xsd:complexType>
|
158
|
+
|
159
|
+
<xsd:complexType name="classificationType" mixed="true">
|
160
|
+
<xsd:sequence>
|
161
|
+
<xsd:element ref="purpose" minOccurs="0"/>
|
162
|
+
<xsd:element ref="taxonpath" minOccurs="0" maxOccurs="unbounded"/>
|
163
|
+
<xsd:element ref="description" minOccurs="0"/>
|
164
|
+
<xsd:element ref="keyword" minOccurs="0" maxOccurs="unbounded"/>
|
165
|
+
<xsd:group ref="grp.any"/>
|
166
|
+
</xsd:sequence>
|
167
|
+
</xsd:complexType>
|
168
|
+
|
169
|
+
<xsd:complexType name="contextType">
|
170
|
+
<xsd:sequence>
|
171
|
+
<xsd:element ref="source"/>
|
172
|
+
<xsd:element ref="value"/>
|
173
|
+
</xsd:sequence>
|
174
|
+
</xsd:complexType>
|
175
|
+
|
176
|
+
<xsd:complexType name="contributeType" mixed="true">
|
177
|
+
<xsd:sequence>
|
178
|
+
<xsd:element ref="role"/>
|
179
|
+
<xsd:element ref="centity" minOccurs="0" maxOccurs="unbounded"/>
|
180
|
+
<xsd:element ref="date" minOccurs="0"/>
|
181
|
+
<xsd:group ref="grp.any"/>
|
182
|
+
</xsd:sequence>
|
183
|
+
</xsd:complexType>
|
184
|
+
|
185
|
+
<xsd:complexType name="copyrightandotherrestrictionsType">
|
186
|
+
<xsd:sequence>
|
187
|
+
<xsd:element ref="source"/>
|
188
|
+
<xsd:element ref="value"/>
|
189
|
+
</xsd:sequence>
|
190
|
+
</xsd:complexType>
|
191
|
+
|
192
|
+
<xsd:complexType name="costType">
|
193
|
+
<xsd:sequence>
|
194
|
+
<xsd:element ref="source"/>
|
195
|
+
<xsd:element ref="value"/>
|
196
|
+
</xsd:sequence>
|
197
|
+
</xsd:complexType>
|
198
|
+
|
199
|
+
<xsd:complexType name="coverageType">
|
200
|
+
<xsd:sequence>
|
201
|
+
<xsd:element ref="langstring" minOccurs="1" maxOccurs="unbounded"/>
|
202
|
+
</xsd:sequence>
|
203
|
+
</xsd:complexType>
|
204
|
+
|
205
|
+
<xsd:complexType name="dateType">
|
206
|
+
<xsd:sequence>
|
207
|
+
<xsd:element ref="datetime" minOccurs="0"/>
|
208
|
+
<xsd:element ref="description" minOccurs="0"/>
|
209
|
+
</xsd:sequence>
|
210
|
+
</xsd:complexType>
|
211
|
+
|
212
|
+
<xsd:complexType name="descriptionType">
|
213
|
+
<xsd:sequence>
|
214
|
+
<xsd:element ref="langstring" minOccurs="1" maxOccurs="unbounded"/>
|
215
|
+
</xsd:sequence>
|
216
|
+
</xsd:complexType>
|
217
|
+
|
218
|
+
<xsd:complexType name="difficultyType">
|
219
|
+
<xsd:sequence>
|
220
|
+
<xsd:element ref="source"/>
|
221
|
+
<xsd:element ref="value"/>
|
222
|
+
</xsd:sequence>
|
223
|
+
</xsd:complexType>
|
224
|
+
|
225
|
+
<xsd:complexType name="durationType">
|
226
|
+
<xsd:sequence>
|
227
|
+
<xsd:element ref="datetime" minOccurs="0"/>
|
228
|
+
<xsd:element ref="description" minOccurs="0"/>
|
229
|
+
</xsd:sequence>
|
230
|
+
</xsd:complexType>
|
231
|
+
|
232
|
+
<xsd:complexType name="educationalType" mixed="true">
|
233
|
+
<xsd:sequence>
|
234
|
+
<xsd:element ref="interactivitytype" minOccurs="0"/>
|
235
|
+
<xsd:element ref="learningresourcetype" minOccurs="0" maxOccurs="unbounded"/>
|
236
|
+
<xsd:element ref="interactivitylevel" minOccurs="0"/>
|
237
|
+
<xsd:element ref="semanticdensity" minOccurs="0"/>
|
238
|
+
<xsd:element ref="intendedenduserrole" minOccurs="0" maxOccurs="unbounded"/>
|
239
|
+
<xsd:element ref="context" minOccurs="0" maxOccurs="unbounded"/>
|
240
|
+
<xsd:element ref="typicalagerange" minOccurs="0" maxOccurs="unbounded"/>
|
241
|
+
<xsd:element ref="difficulty" minOccurs="0"/>
|
242
|
+
<xsd:element ref="typicallearningtime" minOccurs="0"/>
|
243
|
+
<xsd:element ref="description" minOccurs="0"/>
|
244
|
+
<xsd:element ref="language" minOccurs="0" maxOccurs="unbounded"/>
|
245
|
+
<xsd:group ref="grp.any"/>
|
246
|
+
</xsd:sequence>
|
247
|
+
</xsd:complexType>
|
248
|
+
|
249
|
+
<xsd:complexType name="entryType">
|
250
|
+
<xsd:sequence>
|
251
|
+
<xsd:element ref="langstring" minOccurs="1" maxOccurs="unbounded"/>
|
252
|
+
</xsd:sequence>
|
253
|
+
</xsd:complexType>
|
254
|
+
|
255
|
+
<xsd:complexType name="generalType" mixed="true">
|
256
|
+
<xsd:sequence>
|
257
|
+
<xsd:element ref="identifier" minOccurs="0"/>
|
258
|
+
<xsd:element ref="title" minOccurs="0"/>
|
259
|
+
<xsd:element ref="catalogentry" minOccurs="0" maxOccurs="unbounded"/>
|
260
|
+
<xsd:element ref="language" minOccurs="0" maxOccurs="unbounded"/>
|
261
|
+
<xsd:element ref="description" minOccurs="0" maxOccurs="unbounded"/>
|
262
|
+
<xsd:element ref="keyword" minOccurs="0" maxOccurs="unbounded"/>
|
263
|
+
<xsd:element ref="coverage" minOccurs="0" maxOccurs="unbounded"/>
|
264
|
+
<xsd:element ref="structure" minOccurs="0"/>
|
265
|
+
<xsd:element ref="aggregationlevel" minOccurs="0"/>
|
266
|
+
<xsd:group ref="grp.any"/>
|
267
|
+
</xsd:sequence>
|
268
|
+
</xsd:complexType>
|
269
|
+
|
270
|
+
<xsd:complexType name="installationremarksType">
|
271
|
+
<xsd:sequence>
|
272
|
+
<xsd:element ref="langstring" minOccurs="1" maxOccurs="unbounded"/>
|
273
|
+
</xsd:sequence>
|
274
|
+
</xsd:complexType>
|
275
|
+
|
276
|
+
<xsd:complexType name="intendedenduserroleType">
|
277
|
+
<xsd:sequence>
|
278
|
+
<xsd:element ref="source"/>
|
279
|
+
<xsd:element ref="value"/>
|
280
|
+
</xsd:sequence>
|
281
|
+
</xsd:complexType>
|
282
|
+
|
283
|
+
<xsd:complexType name="interactivitylevelType">
|
284
|
+
<xsd:sequence>
|
285
|
+
<xsd:element ref="source"/>
|
286
|
+
<xsd:element ref="value"/>
|
287
|
+
</xsd:sequence>
|
288
|
+
</xsd:complexType>
|
289
|
+
|
290
|
+
<xsd:complexType name="interactivitytypeType">
|
291
|
+
<xsd:sequence>
|
292
|
+
<xsd:element ref="source"/>
|
293
|
+
<xsd:element ref="value"/>
|
294
|
+
</xsd:sequence>
|
295
|
+
</xsd:complexType>
|
296
|
+
|
297
|
+
<xsd:complexType name="keywordType">
|
298
|
+
<xsd:sequence>
|
299
|
+
<xsd:element ref="langstring" minOccurs="1" maxOccurs="unbounded"/>
|
300
|
+
</xsd:sequence>
|
301
|
+
</xsd:complexType>
|
302
|
+
|
303
|
+
<xsd:complexType name="kindType">
|
304
|
+
<xsd:sequence>
|
305
|
+
<xsd:element ref="source"/>
|
306
|
+
<xsd:element ref="value"/>
|
307
|
+
</xsd:sequence>
|
308
|
+
</xsd:complexType>
|
309
|
+
|
310
|
+
<xsd:complexType name="langstringType">
|
311
|
+
<xsd:simpleContent>
|
312
|
+
<xsd:extension base="xsd:string">
|
313
|
+
<xsd:attribute ref="xml:lang"/>
|
314
|
+
</xsd:extension>
|
315
|
+
</xsd:simpleContent>
|
316
|
+
</xsd:complexType>
|
317
|
+
|
318
|
+
<xsd:complexType name="learningresourcetypeType">
|
319
|
+
<xsd:sequence>
|
320
|
+
<xsd:element ref="source"/>
|
321
|
+
<xsd:element ref="value"/>
|
322
|
+
</xsd:sequence>
|
323
|
+
</xsd:complexType>
|
324
|
+
|
325
|
+
<xsd:complexType name="lifecycleType" mixed="true">
|
326
|
+
<xsd:sequence>
|
327
|
+
<xsd:element ref="version" minOccurs="0"/>
|
328
|
+
<xsd:element ref="status" minOccurs="0"/>
|
329
|
+
<xsd:element ref="contribute" minOccurs="0" maxOccurs="unbounded"/>
|
330
|
+
<xsd:group ref="grp.any"/>
|
331
|
+
</xsd:sequence>
|
332
|
+
</xsd:complexType>
|
333
|
+
|
334
|
+
<xsd:complexType name="locationType">
|
335
|
+
<xsd:simpleContent>
|
336
|
+
<xsd:extension base="xsd:string">
|
337
|
+
<xsd:attributeGroup ref="attr.type"/>
|
338
|
+
</xsd:extension>
|
339
|
+
</xsd:simpleContent>
|
340
|
+
</xsd:complexType>
|
341
|
+
|
342
|
+
<xsd:complexType name="lomType">
|
343
|
+
<xsd:sequence>
|
344
|
+
<xsd:element ref="general" minOccurs="0"/>
|
345
|
+
<xsd:element ref="lifecycle" minOccurs="0"/>
|
346
|
+
<xsd:element ref="metametadata" minOccurs="0"/>
|
347
|
+
<xsd:element ref="technical" minOccurs="0"/>
|
348
|
+
<xsd:element ref="educational" minOccurs="0"/>
|
349
|
+
<xsd:element ref="rights" minOccurs="0"/>
|
350
|
+
<xsd:element ref="relation" minOccurs="0" maxOccurs="unbounded"/>
|
351
|
+
<xsd:element ref="annotation" minOccurs="0" maxOccurs="unbounded"/>
|
352
|
+
<xsd:element ref="classification" minOccurs="0" maxOccurs="unbounded"/>
|
353
|
+
</xsd:sequence>
|
354
|
+
</xsd:complexType>
|
355
|
+
|
356
|
+
<xsd:complexType name="metametadataType" mixed="true">
|
357
|
+
<xsd:sequence>
|
358
|
+
<xsd:element ref="identifier" minOccurs="0"/>
|
359
|
+
<xsd:element ref="catalogentry" minOccurs="0" maxOccurs="unbounded"/>
|
360
|
+
<xsd:element ref="contribute" minOccurs="0" maxOccurs="unbounded"/>
|
361
|
+
<xsd:element ref="metadatascheme" minOccurs="0" maxOccurs="unbounded"/>
|
362
|
+
<xsd:element ref="language" minOccurs="0"/>
|
363
|
+
<xsd:group ref="grp.any"/>
|
364
|
+
</xsd:sequence>
|
365
|
+
</xsd:complexType>
|
366
|
+
|
367
|
+
<xsd:complexType name="nameType">
|
368
|
+
<xsd:sequence>
|
369
|
+
<xsd:element ref="source"/>
|
370
|
+
<xsd:element ref="value"/>
|
371
|
+
</xsd:sequence>
|
372
|
+
</xsd:complexType>
|
373
|
+
|
374
|
+
<xsd:complexType name="otherplatformrequirementsType">
|
375
|
+
<xsd:sequence>
|
376
|
+
<xsd:element ref="langstring" minOccurs="1" maxOccurs="unbounded"/>
|
377
|
+
</xsd:sequence>
|
378
|
+
</xsd:complexType>
|
379
|
+
|
380
|
+
<xsd:complexType name="personType">
|
381
|
+
<xsd:sequence>
|
382
|
+
<xsd:element ref="vcard"/>
|
383
|
+
</xsd:sequence>
|
384
|
+
</xsd:complexType>
|
385
|
+
|
386
|
+
<xsd:complexType name="purposeType">
|
387
|
+
<xsd:sequence>
|
388
|
+
<xsd:element ref="source"/>
|
389
|
+
<xsd:element ref="value"/>
|
390
|
+
</xsd:sequence>
|
391
|
+
</xsd:complexType>
|
392
|
+
|
393
|
+
<xsd:complexType name="relationType" mixed="true">
|
394
|
+
<xsd:sequence>
|
395
|
+
<xsd:element ref="kind" minOccurs="0"/>
|
396
|
+
<xsd:element ref="resource" minOccurs="0"/>
|
397
|
+
<xsd:group ref="grp.any"/>
|
398
|
+
</xsd:sequence>
|
399
|
+
</xsd:complexType>
|
400
|
+
|
401
|
+
<xsd:complexType name="requirementType" mixed="true">
|
402
|
+
<xsd:sequence>
|
403
|
+
<xsd:element ref="type" minOccurs="0"/>
|
404
|
+
<xsd:element ref="name" minOccurs="0"/>
|
405
|
+
<xsd:element ref="minimumversion" minOccurs="0"/>
|
406
|
+
<xsd:element ref="maximumversion" minOccurs="0"/>
|
407
|
+
<xsd:group ref="grp.any"/>
|
408
|
+
</xsd:sequence>
|
409
|
+
</xsd:complexType>
|
410
|
+
|
411
|
+
<xsd:complexType name="resourceType" mixed="true">
|
412
|
+
<xsd:sequence>
|
413
|
+
<xsd:element ref="identifier" minOccurs="0"/>
|
414
|
+
<xsd:element ref="description" minOccurs="0"/>
|
415
|
+
<xsd:element ref="catalogentry" minOccurs="0" maxOccurs="unbounded"/>
|
416
|
+
<xsd:group ref="grp.any"/>
|
417
|
+
</xsd:sequence>
|
418
|
+
</xsd:complexType>
|
419
|
+
|
420
|
+
<xsd:complexType name="rightsType" mixed="true">
|
421
|
+
<xsd:sequence>
|
422
|
+
<xsd:element ref="cost" minOccurs="0"/>
|
423
|
+
<xsd:element ref="copyrightandotherrestrictions" minOccurs="0"/>
|
424
|
+
<xsd:element ref="description" minOccurs="0"/>
|
425
|
+
<xsd:group ref="grp.any"/>
|
426
|
+
</xsd:sequence>
|
427
|
+
</xsd:complexType>
|
428
|
+
|
429
|
+
<xsd:complexType name="roleType">
|
430
|
+
<xsd:sequence>
|
431
|
+
<xsd:element ref="source"/>
|
432
|
+
<xsd:element ref="value"/>
|
433
|
+
</xsd:sequence>
|
434
|
+
</xsd:complexType>
|
435
|
+
|
436
|
+
<xsd:complexType name="semanticdensityType">
|
437
|
+
<xsd:sequence>
|
438
|
+
<xsd:element ref="source"/>
|
439
|
+
<xsd:element ref="value"/>
|
440
|
+
</xsd:sequence>
|
441
|
+
</xsd:complexType>
|
442
|
+
|
443
|
+
<xsd:complexType name="sourceType">
|
444
|
+
<xsd:sequence>
|
445
|
+
<xsd:element ref="langstring"/>
|
446
|
+
</xsd:sequence>
|
447
|
+
</xsd:complexType>
|
448
|
+
|
449
|
+
<xsd:complexType name="statusType">
|
450
|
+
<xsd:sequence>
|
451
|
+
<xsd:element ref="source"/>
|
452
|
+
<xsd:element ref="value"/>
|
453
|
+
</xsd:sequence>
|
454
|
+
</xsd:complexType>
|
455
|
+
|
456
|
+
<xsd:complexType name="stringType">
|
457
|
+
<xsd:simpleContent>
|
458
|
+
<xsd:extension base="xsd:string">
|
459
|
+
<xsd:attribute ref="xml:lang"/>
|
460
|
+
</xsd:extension>
|
461
|
+
</xsd:simpleContent>
|
462
|
+
</xsd:complexType>
|
463
|
+
|
464
|
+
<xsd:complexType name="structureType">
|
465
|
+
<xsd:sequence>
|
466
|
+
<xsd:element ref="source"/>
|
467
|
+
<xsd:element ref="value"/>
|
468
|
+
</xsd:sequence>
|
469
|
+
</xsd:complexType>
|
470
|
+
|
471
|
+
<xsd:complexType name="taxonpathType">
|
472
|
+
<xsd:sequence>
|
473
|
+
<xsd:element ref="source" minOccurs="0"/>
|
474
|
+
<xsd:element ref="taxon" minOccurs="0" maxOccurs="1"/>
|
475
|
+
</xsd:sequence>
|
476
|
+
</xsd:complexType>
|
477
|
+
|
478
|
+
<xsd:complexType name="taxonType">
|
479
|
+
<xsd:sequence>
|
480
|
+
<xsd:element ref="id" minOccurs="0"/>
|
481
|
+
<xsd:element ref="entry" minOccurs="0"/>
|
482
|
+
<xsd:element ref="taxon" minOccurs="0" maxOccurs="1"/>
|
483
|
+
</xsd:sequence>
|
484
|
+
</xsd:complexType>
|
485
|
+
|
486
|
+
<xsd:complexType name="technicalType" mixed="true">
|
487
|
+
<xsd:sequence>
|
488
|
+
<xsd:element ref="format" minOccurs="0" maxOccurs="unbounded"/>
|
489
|
+
<xsd:element ref="size" minOccurs="0"/>
|
490
|
+
<xsd:element ref="location" minOccurs="0" maxOccurs="unbounded"/>
|
491
|
+
<xsd:element ref="requirement" minOccurs="0" maxOccurs="unbounded"/>
|
492
|
+
<xsd:element ref="installationremarks" minOccurs="0"/>
|
493
|
+
<xsd:element ref="otherplatformrequirements" minOccurs="0"/>
|
494
|
+
<xsd:element ref="duration" minOccurs="0"/>
|
495
|
+
<xsd:group ref="grp.any"/>
|
496
|
+
</xsd:sequence>
|
497
|
+
</xsd:complexType>
|
498
|
+
|
499
|
+
<xsd:complexType name="titleType">
|
500
|
+
<xsd:sequence>
|
501
|
+
<xsd:element ref="langstring" minOccurs="1" maxOccurs="unbounded"/>
|
502
|
+
</xsd:sequence>
|
503
|
+
</xsd:complexType>
|
504
|
+
|
505
|
+
<xsd:complexType name="typeType">
|
506
|
+
<xsd:sequence>
|
507
|
+
<xsd:element ref="source"/>
|
508
|
+
<xsd:element ref="value"/>
|
509
|
+
</xsd:sequence>
|
510
|
+
</xsd:complexType>
|
511
|
+
|
512
|
+
<xsd:complexType name="typicalagerangeType">
|
513
|
+
<xsd:sequence>
|
514
|
+
<xsd:element ref="langstring" minOccurs="1" maxOccurs="unbounded"/>
|
515
|
+
</xsd:sequence>
|
516
|
+
</xsd:complexType>
|
517
|
+
|
518
|
+
<xsd:complexType name="typicallearningtimeType">
|
519
|
+
<xsd:sequence>
|
520
|
+
<xsd:element ref="datetime" minOccurs="0"/>
|
521
|
+
<xsd:element ref="description" minOccurs="0"/>
|
522
|
+
</xsd:sequence>
|
523
|
+
</xsd:complexType>
|
524
|
+
|
525
|
+
<xsd:complexType name="valueType">
|
526
|
+
<xsd:sequence>
|
527
|
+
<xsd:element ref="langstring"/>
|
528
|
+
</xsd:sequence>
|
529
|
+
</xsd:complexType>
|
530
|
+
|
531
|
+
<xsd:complexType name="versionType">
|
532
|
+
<xsd:sequence>
|
533
|
+
<xsd:element ref="langstring" minOccurs="1" maxOccurs="unbounded"/>
|
534
|
+
</xsd:sequence>
|
535
|
+
</xsd:complexType>
|
536
|
+
|
537
|
+
<!-- ****************** -->
|
538
|
+
<!-- ** Simple Types ** -->
|
539
|
+
<!-- ****************** -->
|
540
|
+
|
541
|
+
<xsd:simpleType name="formatType">
|
542
|
+
<xsd:restriction base="xsd:string"/>
|
543
|
+
</xsd:simpleType>
|
544
|
+
|
545
|
+
<xsd:simpleType name="sizeType">
|
546
|
+
<xsd:restriction base="xsd:int"/>
|
547
|
+
</xsd:simpleType>
|
548
|
+
|
549
|
+
<xsd:simpleType name="datetimeType">
|
550
|
+
<xsd:restriction base="xsd:string"/>
|
551
|
+
</xsd:simpleType>
|
552
|
+
|
553
|
+
<xsd:simpleType name="idType">
|
554
|
+
<xsd:restriction base="xsd:string"/>
|
555
|
+
</xsd:simpleType>
|
556
|
+
|
557
|
+
<xsd:simpleType name="metadataschemeType">
|
558
|
+
<xsd:restriction base="xsd:string"/>
|
559
|
+
</xsd:simpleType>
|
560
|
+
|
561
|
+
<xsd:simpleType name="catalogType">
|
562
|
+
<xsd:restriction base="xsd:string"/>
|
563
|
+
</xsd:simpleType>
|
564
|
+
|
565
|
+
<xsd:simpleType name="minimumversionType">
|
566
|
+
<xsd:restriction base="xsd:string"/>
|
567
|
+
</xsd:simpleType>
|
568
|
+
|
569
|
+
<xsd:simpleType name="maximumversionType">
|
570
|
+
<xsd:restriction base="xsd:string"/>
|
571
|
+
</xsd:simpleType>
|
572
|
+
|
573
|
+
</xsd:schema>
|