coursecode 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +322 -0
- package/THIRD_PARTY_NOTICES.md +22 -0
- package/bin/cli.js +331 -0
- package/framework/assets/logo-coursecode-black.svg +14 -0
- package/framework/assets/logo-coursecode-white.svg +14 -0
- package/framework/assets/logo-coursecode.svg +14 -0
- package/framework/css/01-base.css +160 -0
- package/framework/css/02-layout.css +499 -0
- package/framework/css/accessibility.css +834 -0
- package/framework/css/components/accordions.css +710 -0
- package/framework/css/components/assessments.css +520 -0
- package/framework/css/components/audio-player.css +570 -0
- package/framework/css/components/badges.css +80 -0
- package/framework/css/components/breadcrumbs.css +87 -0
- package/framework/css/components/buttons.css +707 -0
- package/framework/css/components/callouts.css +1280 -0
- package/framework/css/components/cards.css +475 -0
- package/framework/css/components/carousel.css +193 -0
- package/framework/css/components/checkbox-group.css +123 -0
- package/framework/css/components/checklist.css +203 -0
- package/framework/css/components/collapse.css +96 -0
- package/framework/css/components/comparison.css +33 -0
- package/framework/css/components/content-image.css +36 -0
- package/framework/css/components/document-gallery.css +425 -0
- package/framework/css/components/dropdown.css +115 -0
- package/framework/css/components/embed-frame.css +142 -0
- package/framework/css/components/engagement.css +412 -0
- package/framework/css/components/features.css +35 -0
- package/framework/css/components/flip-cards.css +253 -0
- package/framework/css/components/footer.css +353 -0
- package/framework/css/components/forms.css +294 -0
- package/framework/css/components/hero.css +216 -0
- package/framework/css/components/images.css +528 -0
- package/framework/css/components/interactive-timeline.css +274 -0
- package/framework/css/components/intro-cards.css +30 -0
- package/framework/css/components/lightbox.css +666 -0
- package/framework/css/components/loading.css +65 -0
- package/framework/css/components/modals.css +235 -0
- package/framework/css/components/notifications.css +107 -0
- package/framework/css/components/quote.css +150 -0
- package/framework/css/components/sidebar.css +684 -0
- package/framework/css/components/slide-header.css +52 -0
- package/framework/css/components/spinner.css +62 -0
- package/framework/css/components/stats.css +44 -0
- package/framework/css/components/steps.css +232 -0
- package/framework/css/components/tables.css +90 -0
- package/framework/css/components/tabs.css +347 -0
- package/framework/css/components/timeline.css +154 -0
- package/framework/css/components/toggle.css +95 -0
- package/framework/css/components/tooltip.css +226 -0
- package/framework/css/components/video-player.css +438 -0
- package/framework/css/design-tokens.css +707 -0
- package/framework/css/framework.css +86 -0
- package/framework/css/interactions/accessibility.css +75 -0
- package/framework/css/interactions/base.css +92 -0
- package/framework/css/interactions/drag-drop.css +295 -0
- package/framework/css/interactions/fill-in-the-blank.css +236 -0
- package/framework/css/interactions/hotspots.css +69 -0
- package/framework/css/interactions/index.css +45 -0
- package/framework/css/interactions/interactive-image.css +359 -0
- package/framework/css/interactions/likert.css +126 -0
- package/framework/css/interactions/matching.css +354 -0
- package/framework/css/interactions/numeric-input.css +78 -0
- package/framework/css/interactions/sequencing.css +378 -0
- package/framework/css/interactions/true-false.css +177 -0
- package/framework/css/layouts/article.css +258 -0
- package/framework/css/layouts/base.css +30 -0
- package/framework/css/layouts/canvas.css +38 -0
- package/framework/css/layouts/focused.css +236 -0
- package/framework/css/layouts/index.css +29 -0
- package/framework/css/layouts/presentation.css +191 -0
- package/framework/css/layouts/traditional.css +52 -0
- package/framework/css/responsive.css +439 -0
- package/framework/css/utilities/accessibility-utils.css +59 -0
- package/framework/css/utilities/animations.css +419 -0
- package/framework/css/utilities/borders.css +72 -0
- package/framework/css/utilities/colors.css +76 -0
- package/framework/css/utilities/container.css +46 -0
- package/framework/css/utilities/decorative.css +442 -0
- package/framework/css/utilities/display.css +257 -0
- package/framework/css/utilities/flexbox.css +80 -0
- package/framework/css/utilities/grid.css +69 -0
- package/framework/css/utilities/icons.css +534 -0
- package/framework/css/utilities/lists.css +190 -0
- package/framework/css/utilities/spacing.css +167 -0
- package/framework/css/utilities/tables.css +81 -0
- package/framework/css/utilities/typography.css +159 -0
- package/framework/css/utilities/visibility.css +117 -0
- package/framework/docs/COURSE_AUTHORING_GUIDE.md +1773 -0
- package/framework/docs/COURSE_OUTLINE_GUIDE.md +725 -0
- package/framework/docs/COURSE_OUTLINE_TEMPLATE.md +161 -0
- package/framework/docs/DATA_MODEL.md +409 -0
- package/framework/docs/FRAMEWORK_GUIDE.md +1088 -0
- package/framework/docs/USER_GUIDE.md +583 -0
- package/framework/docs/examples/cloudflare-channel-relay.js +169 -0
- package/framework/docs/examples/cloudflare-data-worker.js +102 -0
- package/framework/docs/examples/cloudflare-error-worker.js +228 -0
- package/framework/index.html +175 -0
- package/framework/js/app/AppActions.js +410 -0
- package/framework/js/app/AppState.js +225 -0
- package/framework/js/app/AppUI.js +616 -0
- package/framework/js/assessment/AssessmentActions.js +615 -0
- package/framework/js/assessment/AssessmentFactory.js +471 -0
- package/framework/js/assessment/AssessmentState.js +322 -0
- package/framework/js/assessment/AssessmentUI.js +451 -0
- package/framework/js/automation/api-engagement.js +196 -0
- package/framework/js/automation/api-interactions.js +167 -0
- package/framework/js/automation/api.js +242 -0
- package/framework/js/automation/index.js +41 -0
- package/framework/js/components/interactions/drag-drop.js +884 -0
- package/framework/js/components/interactions/fill-in.js +535 -0
- package/framework/js/components/interactions/hotspot.js +702 -0
- package/framework/js/components/interactions/interaction-base.js +511 -0
- package/framework/js/components/interactions/likert.js +301 -0
- package/framework/js/components/interactions/matching.js +699 -0
- package/framework/js/components/interactions/multiple-choice.js +377 -0
- package/framework/js/components/interactions/numeric.js +271 -0
- package/framework/js/components/interactions/sequencing.js +423 -0
- package/framework/js/components/interactions/true-false.js +241 -0
- package/framework/js/components/ui-components/accordion.js +442 -0
- package/framework/js/components/ui-components/alert.js +88 -0
- package/framework/js/components/ui-components/audio-player.js +1193 -0
- package/framework/js/components/ui-components/callout.js +121 -0
- package/framework/js/components/ui-components/carousel.js +145 -0
- package/framework/js/components/ui-components/checkbox-group.js +87 -0
- package/framework/js/components/ui-components/checklist.js +40 -0
- package/framework/js/components/ui-components/collapse.js +114 -0
- package/framework/js/components/ui-components/comparison.js +30 -0
- package/framework/js/components/ui-components/conditional-display.js +150 -0
- package/framework/js/components/ui-components/content-image.js +41 -0
- package/framework/js/components/ui-components/dropdown.js +262 -0
- package/framework/js/components/ui-components/embed-frame.js +274 -0
- package/framework/js/components/ui-components/features.js +33 -0
- package/framework/js/components/ui-components/flip-card.js +230 -0
- package/framework/js/components/ui-components/form-validator.js +76 -0
- package/framework/js/components/ui-components/hero.js +49 -0
- package/framework/js/components/ui-components/index.js +12 -0
- package/framework/js/components/ui-components/interactive-image.js +235 -0
- package/framework/js/components/ui-components/interactive-timeline.js +285 -0
- package/framework/js/components/ui-components/intro-cards.js +35 -0
- package/framework/js/components/ui-components/lightbox.js +652 -0
- package/framework/js/components/ui-components/modal.js +386 -0
- package/framework/js/components/ui-components/notifications.js +145 -0
- package/framework/js/components/ui-components/progress.js +88 -0
- package/framework/js/components/ui-components/quote.js +41 -0
- package/framework/js/components/ui-components/stats.js +33 -0
- package/framework/js/components/ui-components/steps.js +41 -0
- package/framework/js/components/ui-components/tabs.js +255 -0
- package/framework/js/components/ui-components/timeline.js +42 -0
- package/framework/js/components/ui-components/toggle-group.js +73 -0
- package/framework/js/components/ui-components/tooltip.js +458 -0
- package/framework/js/components/ui-components/value-display.js +133 -0
- package/framework/js/components/ui-components/video-player.js +686 -0
- package/framework/js/core/component-catalog.js +121 -0
- package/framework/js/core/event-bus.js +178 -0
- package/framework/js/core/interaction-catalog.js +149 -0
- package/framework/js/dev/runtime-linter.js +1725 -0
- package/framework/js/drivers/cmi5-driver.js +768 -0
- package/framework/js/drivers/driver-factory.js +77 -0
- package/framework/js/drivers/driver-interface.js +110 -0
- package/framework/js/drivers/http-driver-base.js +241 -0
- package/framework/js/drivers/lti-driver.js +508 -0
- package/framework/js/drivers/proxy-driver.js +444 -0
- package/framework/js/drivers/scorm-12-driver.js +560 -0
- package/framework/js/drivers/scorm-2004-driver.js +775 -0
- package/framework/js/drivers/scorm-driver-base.js +112 -0
- package/framework/js/engagement/engagement-manager.js +404 -0
- package/framework/js/engagement/engagement-progress.js +191 -0
- package/framework/js/engagement/engagement-trackers.js +215 -0
- package/framework/js/engagement/requirement-strategies.js +268 -0
- package/framework/js/main.js +727 -0
- package/framework/js/managers/accessibility-manager.js +499 -0
- package/framework/js/managers/assessment-manager.js +230 -0
- package/framework/js/managers/audio-manager.js +944 -0
- package/framework/js/managers/comment-manager.js +88 -0
- package/framework/js/managers/flag-manager.js +86 -0
- package/framework/js/managers/interaction-manager.js +254 -0
- package/framework/js/managers/interaction-registry.js +96 -0
- package/framework/js/managers/objective-manager.js +423 -0
- package/framework/js/managers/score-manager.js +441 -0
- package/framework/js/managers/video-manager.js +536 -0
- package/framework/js/navigation/Breadcrumbs.js +234 -0
- package/framework/js/navigation/NavigationActions.js +1132 -0
- package/framework/js/navigation/NavigationState.js +276 -0
- package/framework/js/navigation/NavigationUI.js +574 -0
- package/framework/js/navigation/document-gallery.js +357 -0
- package/framework/js/navigation/navigation-helpers.js +175 -0
- package/framework/js/navigation/navigation-validators.js +174 -0
- package/framework/js/state/index.js +8 -0
- package/framework/js/state/lms-connection.js +482 -0
- package/framework/js/state/lms-error-utils.js +58 -0
- package/framework/js/state/state-commits.js +200 -0
- package/framework/js/state/state-domains.js +86 -0
- package/framework/js/state/state-manager.js +502 -0
- package/framework/js/state/state-validation.js +311 -0
- package/framework/js/state/transaction-log.js +41 -0
- package/framework/js/state/xapi-statement-service.js +325 -0
- package/framework/js/utilities/access-control.js +99 -0
- package/framework/js/utilities/breakpoint-manager.js +315 -0
- package/framework/js/utilities/canvas-slide.js +35 -0
- package/framework/js/utilities/conditional-display.js +388 -0
- package/framework/js/utilities/course-channel.js +214 -0
- package/framework/js/utilities/course-helpers.js +420 -0
- package/framework/js/utilities/data-reporter.js +273 -0
- package/framework/js/utilities/error-reporter.js +313 -0
- package/framework/js/utilities/hotspot-helper.js +341 -0
- package/framework/js/utilities/icons.js +348 -0
- package/framework/js/utilities/logger.js +92 -0
- package/framework/js/utilities/markdown-renderer.js +45 -0
- package/framework/js/utilities/scroll-tracker.js +68 -0
- package/framework/js/utilities/ui-initializer.js +146 -0
- package/framework/js/utilities/utilities.js +293 -0
- package/framework/js/utilities/view-manager.js +227 -0
- package/framework/js/validation/html-validators.js +422 -0
- package/framework/js/validation/scorm-validators.js +438 -0
- package/framework/js/vendor/pipwerks.js +931 -0
- package/framework/scripts/generate-narration.js +629 -0
- package/framework/scripts/tts-providers/azure-provider.js +178 -0
- package/framework/scripts/tts-providers/base-provider.js +81 -0
- package/framework/scripts/tts-providers/deepgram-provider.js +135 -0
- package/framework/scripts/tts-providers/elevenlabs-provider.js +148 -0
- package/framework/scripts/tts-providers/google-provider.js +272 -0
- package/framework/scripts/tts-providers/index.js +158 -0
- package/framework/scripts/tts-providers/openai-provider.js +143 -0
- package/framework/version.json +63 -0
- package/lib/authoring-api.js +919 -0
- package/lib/build-linter.js +450 -0
- package/lib/build-packaging.js +186 -0
- package/lib/build.js +88 -0
- package/lib/cloud.js +691 -0
- package/lib/convert.js +341 -0
- package/lib/course-parser.js +936 -0
- package/lib/course-writer.js +258 -0
- package/lib/create.js +248 -0
- package/lib/css-index.js +237 -0
- package/lib/dev.js +51 -0
- package/lib/export-content.js +1246 -0
- package/lib/headless-browser.js +413 -0
- package/lib/import.js +377 -0
- package/lib/index.js +80 -0
- package/lib/info.js +79 -0
- package/lib/interaction-formatters.js +568 -0
- package/lib/manifest/cmi5-manifest.js +63 -0
- package/lib/manifest/lti-tool-config.js +53 -0
- package/lib/manifest/manifest-factory.js +99 -0
- package/lib/manifest/scorm-12-manifest.js +61 -0
- package/lib/manifest/scorm-2004-manifest.js +94 -0
- package/lib/manifest/scorm-proxy-manifest.js +104 -0
- package/lib/manifest-parser.js +96 -0
- package/lib/mcp-prompts.js +753 -0
- package/lib/mcp-server.js +316 -0
- package/lib/narration.js +53 -0
- package/lib/pdf-structure.js +142 -0
- package/lib/preview-export.js +231 -0
- package/lib/preview-routes-api.js +662 -0
- package/lib/preview-routes-editing.js +159 -0
- package/lib/preview-routes-lms.js +230 -0
- package/lib/preview-server.js +564 -0
- package/lib/project-utils.js +269 -0
- package/lib/proxy-templates/proxy.html +68 -0
- package/lib/proxy-templates/scorm-bridge.js +112 -0
- package/lib/scaffold.js +193 -0
- package/lib/schema-extractor.js +361 -0
- package/lib/slide-source-editor.js +586 -0
- package/lib/stub-player/app-viewer.js +195 -0
- package/lib/stub-player/app.js +370 -0
- package/lib/stub-player/catalog-panel.js +312 -0
- package/lib/stub-player/config-panel.js +1303 -0
- package/lib/stub-player/content-generator.js +586 -0
- package/lib/stub-player/content-viewer.js +173 -0
- package/lib/stub-player/debug-panel.js +420 -0
- package/lib/stub-player/edit-mode.js +922 -0
- package/lib/stub-player/edit-utils.js +400 -0
- package/lib/stub-player/header-bar.js +354 -0
- package/lib/stub-player/interaction-editor.js +210 -0
- package/lib/stub-player/interactions-panel.js +565 -0
- package/lib/stub-player/lms-api.js +1094 -0
- package/lib/stub-player/login-screen.js +74 -0
- package/lib/stub-player/outline-mode.js +689 -0
- package/lib/stub-player/styles/_assessments-panel.css +245 -0
- package/lib/stub-player/styles/_base.css +89 -0
- package/lib/stub-player/styles/_catalog-icons.css +96 -0
- package/lib/stub-player/styles/_catalog-panel.css +291 -0
- package/lib/stub-player/styles/_config-panel.css +636 -0
- package/lib/stub-player/styles/_content-viewer.css +834 -0
- package/lib/stub-player/styles/_debug-panel.css +576 -0
- package/lib/stub-player/styles/_edit-mode.css +128 -0
- package/lib/stub-player/styles/_header-bar.css +343 -0
- package/lib/stub-player/styles/_interaction-editor.css +140 -0
- package/lib/stub-player/styles/_interactions-panel.css +1038 -0
- package/lib/stub-player/styles/_login-screen.css +102 -0
- package/lib/stub-player/styles/_outline-mode.css +752 -0
- package/lib/stub-player/styles.css +15 -0
- package/lib/stub-player.js +160 -0
- package/lib/test-data-reporting.js +176 -0
- package/lib/test-error-reporting.js +146 -0
- package/lib/token.js +86 -0
- package/lib/upgrade.js +257 -0
- package/lib/validation-rules.js +517 -0
- package/lib/vite-plugin-content-discovery.js +296 -0
- package/package.json +108 -0
- package/schemas/XMLSchema.dtd +402 -0
- package/schemas/adlcp_v1p3.xsd +111 -0
- package/schemas/adlnav_v1p3.xsd +61 -0
- package/schemas/adlseq_v1p3.xsd +93 -0
- package/schemas/common/anyElement.xsd +27 -0
- package/schemas/common/dataTypes.xsd +138 -0
- package/schemas/common/elementNames.xsd +767 -0
- package/schemas/common/elementTypes.xsd +786 -0
- package/schemas/common/rootElement.xsd +31 -0
- package/schemas/common/vocabTypes.xsd +345 -0
- package/schemas/common/vocabValues.xsd +257 -0
- package/schemas/datatypes.dtd +203 -0
- package/schemas/ims_xml.xsd +35 -0
- package/schemas/imscp_v1p1.xsd +368 -0
- package/schemas/imsss_v1p0.xsd +67 -0
- package/schemas/imsss_v1p0auxresource.xsd +19 -0
- package/schemas/imsss_v1p0control.xsd +20 -0
- package/schemas/imsss_v1p0delivery.xsd +17 -0
- package/schemas/imsss_v1p0limit.xsd +47 -0
- package/schemas/imsss_v1p0objective.xsd +67 -0
- package/schemas/imsss_v1p0random.xsd +16 -0
- package/schemas/imsss_v1p0rollup.xsd +46 -0
- package/schemas/imsss_v1p0seqrule.xsd +108 -0
- package/schemas/imsss_v1p0util.xsd +94 -0
- package/schemas/license.txt +17 -0
- package/schemas/lom.xsd +102 -0
- package/schemas/lomCustom.xsd +62 -0
- package/schemas/lomLoose.xsd +62 -0
- package/schemas/lomStrict.xsd +62 -0
- package/schemas/xml.xsd +81 -0
- package/template/.env.example +92 -0
- package/template/course/assets/audio/example-intro.mp3 +0 -0
- package/template/course/assets/audio/example-ui-demo--compact-player.mp3 +0 -0
- package/template/course/assets/audio/example-ui-demo--demo-modal.mp3 +0 -0
- package/template/course/assets/audio/example-ui-demo--full-player.mp3 +0 -0
- package/template/course/assets/docs/example_md_1.md +39 -0
- package/template/course/assets/docs/example_md_2.md +41 -0
- package/template/course/assets/docs/example_pdf_1_thumbnail.png +0 -0
- package/template/course/assets/docs/example_pdf_2.pdf +0 -0
- package/template/course/assets/images/course-architecture.svg +36 -0
- package/template/course/assets/images/logo.svg +14 -0
- package/template/course/assets/widgets/counter-demo.html +190 -0
- package/template/course/assets/widgets/gravity-painter.html +384 -0
- package/template/course/course-config.js +539 -0
- package/template/course/icons.js +19 -0
- package/template/course/interactions/PLUGIN_GUIDE.md +97 -0
- package/template/course/slides/example-course-structure.js +138 -0
- package/template/course/slides/example-final-exam.js +144 -0
- package/template/course/slides/example-finishing.js +127 -0
- package/template/course/slides/example-interactions-showcase.js +615 -0
- package/template/course/slides/example-preview-tour.js +129 -0
- package/template/course/slides/example-remedial.js +143 -0
- package/template/course/slides/example-summary.js +103 -0
- package/template/course/slides/example-ui-showcase.js +1805 -0
- package/template/course/slides/example-welcome.js +123 -0
- package/template/course/slides/example-workflow.js +140 -0
- package/template/course/theme.css +165 -0
- package/template/eslint.config.js +47 -0
- package/template/package.json +28 -0
- package/template/vite.config.js +339 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<xs:schema targetNamespace="http://ltsc.ieee.org/xsd/LOM"
|
|
2
|
+
xmlns="http://ltsc.ieee.org/xsd/LOM"
|
|
3
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
4
|
+
elementFormDefault="qualified"
|
|
5
|
+
version="IEEE LTSC LOM XML 1.0">
|
|
6
|
+
|
|
7
|
+
<xs:annotation>
|
|
8
|
+
<xs:documentation>
|
|
9
|
+
This work is licensed under the Creative Commons Attribution-ShareAlike
|
|
10
|
+
License. To view a copy of this license, see the file license.txt,
|
|
11
|
+
visit http://creativecommons.org/licenses/by-sa/1.0 or send a letter to
|
|
12
|
+
Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
|
|
13
|
+
</xs:documentation>
|
|
14
|
+
|
|
15
|
+
<xs:documentation>
|
|
16
|
+
This component schema provides the element name declaration for the
|
|
17
|
+
root element for all LOM instances.
|
|
18
|
+
</xs:documentation>
|
|
19
|
+
</xs:annotation>
|
|
20
|
+
|
|
21
|
+
<!-- Element declarations -->
|
|
22
|
+
|
|
23
|
+
<!-- Learning Object Metadata -->
|
|
24
|
+
<xs:element name="lom" type="lom">
|
|
25
|
+
<xs:unique name="lomUnique">
|
|
26
|
+
<xs:selector xpath="*"/>
|
|
27
|
+
<xs:field xpath="@uniqueElementName"/>
|
|
28
|
+
</xs:unique>
|
|
29
|
+
</xs:element>
|
|
30
|
+
|
|
31
|
+
</xs:schema>
|
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
<xs:schema targetNamespace="http://ltsc.ieee.org/xsd/LOM"
|
|
2
|
+
xmlns="http://ltsc.ieee.org/xsd/LOM"
|
|
3
|
+
xmlns:ag="http://ltsc.ieee.org/xsd/LOM/unique"
|
|
4
|
+
xmlns:ex="http://ltsc.ieee.org/xsd/LOM/extend"
|
|
5
|
+
xmlns:voc="http://ltsc.ieee.org/xsd/LOM/vocab"
|
|
6
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
7
|
+
elementFormDefault="qualified"
|
|
8
|
+
version="IEEE LTSC LOM XML 1.0">
|
|
9
|
+
|
|
10
|
+
<xs:annotation>
|
|
11
|
+
<xs:documentation>
|
|
12
|
+
This work is licensed under the Creative Commons Attribution-ShareAlike
|
|
13
|
+
License. To view a copy of this license, see the file license.txt,
|
|
14
|
+
visit http://creativecommons.org/licenses/by-sa/1.0 or send a letter to
|
|
15
|
+
Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
|
|
16
|
+
</xs:documentation>
|
|
17
|
+
|
|
18
|
+
<xs:documentation>
|
|
19
|
+
This component schema provides global type declarations for those metadata
|
|
20
|
+
elements whose values are taken from a vocabulary datatype.
|
|
21
|
+
</xs:documentation>
|
|
22
|
+
</xs:annotation>
|
|
23
|
+
|
|
24
|
+
<xs:import namespace="http://ltsc.ieee.org/xsd/LOM/unique"/>
|
|
25
|
+
<xs:import namespace="http://ltsc.ieee.org/xsd/LOM/extend"/>
|
|
26
|
+
<xs:import namespace="http://ltsc.ieee.org/xsd/LOM/vocab"/>
|
|
27
|
+
|
|
28
|
+
<!-- Vocabulary type declarations -->
|
|
29
|
+
|
|
30
|
+
<!-- Source -->
|
|
31
|
+
<xs:complexType name="sourceValue">
|
|
32
|
+
<xs:simpleContent>
|
|
33
|
+
<xs:extension base="voc:source">
|
|
34
|
+
<xs:attributeGroup ref="ag:source"/>
|
|
35
|
+
</xs:extension>
|
|
36
|
+
</xs:simpleContent>
|
|
37
|
+
</xs:complexType>
|
|
38
|
+
|
|
39
|
+
<!-- 1.7 Structure -->
|
|
40
|
+
<xs:complexType name="structureVocab">
|
|
41
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
42
|
+
<xs:element name="source" type="sourceValue"/>
|
|
43
|
+
<xs:element name="value" type="structureValue"/>
|
|
44
|
+
<xs:group ref="ex:customElements"/>
|
|
45
|
+
</xs:choice>
|
|
46
|
+
</xs:complexType>
|
|
47
|
+
|
|
48
|
+
<xs:complexType name="structureValue">
|
|
49
|
+
<xs:simpleContent>
|
|
50
|
+
<xs:extension base="voc:structure">
|
|
51
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
52
|
+
</xs:extension>
|
|
53
|
+
</xs:simpleContent>
|
|
54
|
+
</xs:complexType>
|
|
55
|
+
|
|
56
|
+
<!-- 1.8 Aggregation Level -->
|
|
57
|
+
<xs:complexType name="aggregationLevelVocab">
|
|
58
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
59
|
+
<xs:element name="source" type="sourceValue"/>
|
|
60
|
+
<xs:element name="value" type="aggregationLevelValue"/>
|
|
61
|
+
<xs:group ref="ex:customElements"/>
|
|
62
|
+
</xs:choice>
|
|
63
|
+
</xs:complexType>
|
|
64
|
+
|
|
65
|
+
<xs:complexType name="aggregationLevelValue">
|
|
66
|
+
<xs:simpleContent>
|
|
67
|
+
<xs:extension base="voc:aggregationLevel">
|
|
68
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
69
|
+
</xs:extension>
|
|
70
|
+
</xs:simpleContent>
|
|
71
|
+
</xs:complexType>
|
|
72
|
+
|
|
73
|
+
<!-- 2.2 Status -->
|
|
74
|
+
<xs:complexType name="statusVocab">
|
|
75
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
76
|
+
<xs:element name="source" type="sourceValue"/>
|
|
77
|
+
<xs:element name="value" type="statusValue"/>
|
|
78
|
+
<xs:group ref="ex:customElements"/>
|
|
79
|
+
</xs:choice>
|
|
80
|
+
</xs:complexType>
|
|
81
|
+
|
|
82
|
+
<xs:complexType name="statusValue">
|
|
83
|
+
<xs:simpleContent>
|
|
84
|
+
<xs:extension base="voc:status">
|
|
85
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
86
|
+
</xs:extension>
|
|
87
|
+
</xs:simpleContent>
|
|
88
|
+
</xs:complexType>
|
|
89
|
+
|
|
90
|
+
<!-- 2.3.1 Role -->
|
|
91
|
+
<xs:complexType name="roleVocab">
|
|
92
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
93
|
+
<xs:element name="source" type="sourceValue"/>
|
|
94
|
+
<xs:element name="value" type="roleValue"/>
|
|
95
|
+
<xs:group ref="ex:customElements"/>
|
|
96
|
+
</xs:choice>
|
|
97
|
+
</xs:complexType>
|
|
98
|
+
|
|
99
|
+
<xs:complexType name="roleValue">
|
|
100
|
+
<xs:simpleContent>
|
|
101
|
+
<xs:extension base="voc:role">
|
|
102
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
103
|
+
</xs:extension>
|
|
104
|
+
</xs:simpleContent>
|
|
105
|
+
</xs:complexType>
|
|
106
|
+
|
|
107
|
+
<!-- 3.2.1 Role -->
|
|
108
|
+
<xs:complexType name="roleMetaVocab">
|
|
109
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
110
|
+
<xs:element name="source" type="sourceValue"/>
|
|
111
|
+
<xs:element name="value" type="roleMetaValue"/>
|
|
112
|
+
<xs:group ref="ex:customElements"/>
|
|
113
|
+
</xs:choice>
|
|
114
|
+
</xs:complexType>
|
|
115
|
+
|
|
116
|
+
<xs:complexType name="roleMetaValue">
|
|
117
|
+
<xs:simpleContent>
|
|
118
|
+
<xs:extension base="voc:roleMeta">
|
|
119
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
120
|
+
</xs:extension>
|
|
121
|
+
</xs:simpleContent>
|
|
122
|
+
</xs:complexType>
|
|
123
|
+
|
|
124
|
+
<!-- 4.4.1.1 Type -->
|
|
125
|
+
<xs:complexType name="typeVocab">
|
|
126
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
127
|
+
<xs:element name="source" type="sourceValue"/>
|
|
128
|
+
<xs:element name="value" type="typeValue"/>
|
|
129
|
+
<xs:group ref="ex:customElements"/>
|
|
130
|
+
</xs:choice>
|
|
131
|
+
</xs:complexType>
|
|
132
|
+
|
|
133
|
+
<xs:complexType name="typeValue">
|
|
134
|
+
<xs:simpleContent>
|
|
135
|
+
<xs:extension base="voc:type">
|
|
136
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
137
|
+
</xs:extension>
|
|
138
|
+
</xs:simpleContent>
|
|
139
|
+
</xs:complexType>
|
|
140
|
+
|
|
141
|
+
<!-- 4.4.1.2 Name -->
|
|
142
|
+
<xs:complexType name="nameVocab">
|
|
143
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
144
|
+
<xs:element name="source" type="sourceValue"/>
|
|
145
|
+
<xs:element name="value" type="nameValue"/>
|
|
146
|
+
<xs:group ref="ex:customElements"/>
|
|
147
|
+
</xs:choice>
|
|
148
|
+
</xs:complexType>
|
|
149
|
+
|
|
150
|
+
<xs:complexType name="nameValue">
|
|
151
|
+
<xs:simpleContent>
|
|
152
|
+
<xs:extension base="voc:name">
|
|
153
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
154
|
+
</xs:extension>
|
|
155
|
+
</xs:simpleContent>
|
|
156
|
+
</xs:complexType>
|
|
157
|
+
|
|
158
|
+
<!-- 5.1 Interactivity Type -->
|
|
159
|
+
<xs:complexType name="interactivityTypeVocab">
|
|
160
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
161
|
+
<xs:element name="source" type="sourceValue"/>
|
|
162
|
+
<xs:element name="value" type="interactivityTypeValue"/>
|
|
163
|
+
<xs:group ref="ex:customElements"/>
|
|
164
|
+
</xs:choice>
|
|
165
|
+
</xs:complexType>
|
|
166
|
+
|
|
167
|
+
<xs:complexType name="interactivityTypeValue">
|
|
168
|
+
<xs:simpleContent>
|
|
169
|
+
<xs:extension base="voc:interactivityType">
|
|
170
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
171
|
+
</xs:extension>
|
|
172
|
+
</xs:simpleContent>
|
|
173
|
+
</xs:complexType>
|
|
174
|
+
|
|
175
|
+
<!-- 5.2 Learning Resource Type -->
|
|
176
|
+
<xs:complexType name="learningResourceTypeVocab">
|
|
177
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
178
|
+
<xs:element name="source" type="sourceValue"/>
|
|
179
|
+
<xs:element name="value" type="learningResourceTypeValue"/>
|
|
180
|
+
<xs:group ref="ex:customElements"/>
|
|
181
|
+
</xs:choice>
|
|
182
|
+
</xs:complexType>
|
|
183
|
+
|
|
184
|
+
<xs:complexType name="learningResourceTypeValue">
|
|
185
|
+
<xs:simpleContent>
|
|
186
|
+
<xs:extension base="voc:learningResourceType">
|
|
187
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
188
|
+
</xs:extension>
|
|
189
|
+
</xs:simpleContent>
|
|
190
|
+
</xs:complexType>
|
|
191
|
+
|
|
192
|
+
<!-- 5.3 Interactivity Level -->
|
|
193
|
+
<xs:complexType name="interactivityLevelVocab">
|
|
194
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
195
|
+
<xs:element name="source" type="sourceValue"/>
|
|
196
|
+
<xs:element name="value" type="interactivityLevelValue"/>
|
|
197
|
+
<xs:group ref="ex:customElements"/>
|
|
198
|
+
</xs:choice>
|
|
199
|
+
</xs:complexType>
|
|
200
|
+
|
|
201
|
+
<xs:complexType name="interactivityLevelValue">
|
|
202
|
+
<xs:simpleContent>
|
|
203
|
+
<xs:extension base="voc:interactivityLevel">
|
|
204
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
205
|
+
</xs:extension>
|
|
206
|
+
</xs:simpleContent>
|
|
207
|
+
</xs:complexType>
|
|
208
|
+
|
|
209
|
+
<!-- 5.4 Semantic Density -->
|
|
210
|
+
<xs:complexType name="semanticDensityVocab">
|
|
211
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
212
|
+
<xs:element name="source" type="sourceValue"/>
|
|
213
|
+
<xs:element name="value" type="semanticDensityValue"/>
|
|
214
|
+
<xs:group ref="ex:customElements"/>
|
|
215
|
+
</xs:choice>
|
|
216
|
+
</xs:complexType>
|
|
217
|
+
|
|
218
|
+
<xs:complexType name="semanticDensityValue">
|
|
219
|
+
<xs:simpleContent>
|
|
220
|
+
<xs:extension base="voc:semanticDensity">
|
|
221
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
222
|
+
</xs:extension>
|
|
223
|
+
</xs:simpleContent>
|
|
224
|
+
</xs:complexType>
|
|
225
|
+
|
|
226
|
+
<!-- 5.5 Intended End User Role -->
|
|
227
|
+
<xs:complexType name="intendedEndUserRoleVocab">
|
|
228
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
229
|
+
<xs:element name="source" type="sourceValue"/>
|
|
230
|
+
<xs:element name="value" type="intendedEndUserRoleValue"/>
|
|
231
|
+
<xs:group ref="ex:customElements"/>
|
|
232
|
+
</xs:choice>
|
|
233
|
+
</xs:complexType>
|
|
234
|
+
|
|
235
|
+
<xs:complexType name="intendedEndUserRoleValue">
|
|
236
|
+
<xs:simpleContent>
|
|
237
|
+
<xs:extension base="voc:intendedEndUserRole">
|
|
238
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
239
|
+
</xs:extension>
|
|
240
|
+
</xs:simpleContent>
|
|
241
|
+
</xs:complexType>
|
|
242
|
+
|
|
243
|
+
<!-- 5.6 Context -->
|
|
244
|
+
<xs:complexType name="contextVocab">
|
|
245
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
246
|
+
<xs:element name="source" type="sourceValue"/>
|
|
247
|
+
<xs:element name="value" type="contextValue"/>
|
|
248
|
+
<xs:group ref="ex:customElements"/>
|
|
249
|
+
</xs:choice>
|
|
250
|
+
</xs:complexType>
|
|
251
|
+
|
|
252
|
+
<xs:complexType name="contextValue">
|
|
253
|
+
<xs:simpleContent>
|
|
254
|
+
<xs:extension base="voc:context">
|
|
255
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
256
|
+
</xs:extension>
|
|
257
|
+
</xs:simpleContent>
|
|
258
|
+
</xs:complexType>
|
|
259
|
+
|
|
260
|
+
<!-- 5.8 Difficulty -->
|
|
261
|
+
<xs:complexType name="difficultyVocab">
|
|
262
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
263
|
+
<xs:element name="source" type="sourceValue"/>
|
|
264
|
+
<xs:element name="value" type="difficultyValue"/>
|
|
265
|
+
<xs:group ref="ex:customElements"/>
|
|
266
|
+
</xs:choice>
|
|
267
|
+
</xs:complexType>
|
|
268
|
+
|
|
269
|
+
<xs:complexType name="difficultyValue">
|
|
270
|
+
<xs:simpleContent>
|
|
271
|
+
<xs:extension base="voc:difficulty">
|
|
272
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
273
|
+
</xs:extension>
|
|
274
|
+
</xs:simpleContent>
|
|
275
|
+
</xs:complexType>
|
|
276
|
+
|
|
277
|
+
<!-- 6.1 Cost -->
|
|
278
|
+
<xs:complexType name="costVocab">
|
|
279
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
280
|
+
<xs:element name="source" type="sourceValue"/>
|
|
281
|
+
<xs:element name="value" type="costValue"/>
|
|
282
|
+
<xs:group ref="ex:customElements"/>
|
|
283
|
+
</xs:choice>
|
|
284
|
+
</xs:complexType>
|
|
285
|
+
|
|
286
|
+
<xs:complexType name="costValue">
|
|
287
|
+
<xs:simpleContent>
|
|
288
|
+
<xs:extension base="voc:cost">
|
|
289
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
290
|
+
</xs:extension>
|
|
291
|
+
</xs:simpleContent>
|
|
292
|
+
</xs:complexType>
|
|
293
|
+
|
|
294
|
+
<!-- 6.2 Copyright and Other Restrictions -->
|
|
295
|
+
<xs:complexType name="copyrightAndOtherRestrictionsVocab">
|
|
296
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
297
|
+
<xs:element name="source" type="sourceValue"/>
|
|
298
|
+
<xs:element name="value" type="copyrightAndOtherRestrictionsValue"/>
|
|
299
|
+
<xs:group ref="ex:customElements"/>
|
|
300
|
+
</xs:choice>
|
|
301
|
+
</xs:complexType>
|
|
302
|
+
|
|
303
|
+
<xs:complexType name="copyrightAndOtherRestrictionsValue">
|
|
304
|
+
<xs:simpleContent>
|
|
305
|
+
<xs:extension base="voc:copyrightAndOtherRestrictions">
|
|
306
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
307
|
+
</xs:extension>
|
|
308
|
+
</xs:simpleContent>
|
|
309
|
+
</xs:complexType>
|
|
310
|
+
|
|
311
|
+
<!-- 7.1 Kind -->
|
|
312
|
+
<xs:complexType name="kindVocab">
|
|
313
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
314
|
+
<xs:element name="source" type="sourceValue"/>
|
|
315
|
+
<xs:element name="value" type="kindValue"/>
|
|
316
|
+
<xs:group ref="ex:customElements"/>
|
|
317
|
+
</xs:choice>
|
|
318
|
+
</xs:complexType>
|
|
319
|
+
|
|
320
|
+
<xs:complexType name="kindValue">
|
|
321
|
+
<xs:simpleContent>
|
|
322
|
+
<xs:extension base="voc:kind">
|
|
323
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
324
|
+
</xs:extension>
|
|
325
|
+
</xs:simpleContent>
|
|
326
|
+
</xs:complexType>
|
|
327
|
+
|
|
328
|
+
<!-- 9.1 Purpose -->
|
|
329
|
+
<xs:complexType name="purposeVocab">
|
|
330
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
331
|
+
<xs:element name="source" type="sourceValue"/>
|
|
332
|
+
<xs:element name="value" type="purposeValue"/>
|
|
333
|
+
<xs:group ref="ex:customElements"/>
|
|
334
|
+
</xs:choice>
|
|
335
|
+
</xs:complexType>
|
|
336
|
+
|
|
337
|
+
<xs:complexType name="purposeValue">
|
|
338
|
+
<xs:simpleContent>
|
|
339
|
+
<xs:extension base="voc:purpose">
|
|
340
|
+
<xs:attributeGroup ref="ag:value"/>
|
|
341
|
+
</xs:extension>
|
|
342
|
+
</xs:simpleContent>
|
|
343
|
+
</xs:complexType>
|
|
344
|
+
|
|
345
|
+
</xs:schema>
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
<xs:schema targetNamespace="http://ltsc.ieee.org/xsd/LOM"
|
|
2
|
+
xmlns="http://ltsc.ieee.org/xsd/LOM"
|
|
3
|
+
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
4
|
+
elementFormDefault="qualified"
|
|
5
|
+
version="IEEE LTSC LOM XML 1.0">
|
|
6
|
+
|
|
7
|
+
<xs:annotation>
|
|
8
|
+
<xs:documentation>
|
|
9
|
+
This work is licensed under the Creative Commons Attribution-ShareAlike
|
|
10
|
+
License. To view a copy of this license, see the file license.txt,
|
|
11
|
+
visit http://creativecommons.org/licenses/by-sa/1.0 or send a letter to
|
|
12
|
+
Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, USA.
|
|
13
|
+
</xs:documentation>
|
|
14
|
+
|
|
15
|
+
<xs:documentation>
|
|
16
|
+
This component schema provides global type declarations for the standard
|
|
17
|
+
enumerated types for those metadata elements whose values are taken from
|
|
18
|
+
a vocabulary datatype.
|
|
19
|
+
</xs:documentation>
|
|
20
|
+
<xs:documentation>
|
|
21
|
+
****************************************************************************
|
|
22
|
+
** CHANGE HISTORY **
|
|
23
|
+
****************************************************************************
|
|
24
|
+
** 09/22/2003: - Updated comment describing this file to state that this **
|
|
25
|
+
** file is the LOM V1.0 Base Schema vocabulary source and **
|
|
26
|
+
** value declarations. **
|
|
27
|
+
****************************************************************************
|
|
28
|
+
</xs:documentation>
|
|
29
|
+
</xs:annotation>
|
|
30
|
+
|
|
31
|
+
<!-- LOM V1.0 Base Schema vocabulary source and value declarations -->
|
|
32
|
+
|
|
33
|
+
<!-- Source -->
|
|
34
|
+
<xs:simpleType name="sourceValues">
|
|
35
|
+
<xs:restriction base="xs:token">
|
|
36
|
+
<xs:enumeration value="LOMv1.0"/>
|
|
37
|
+
</xs:restriction>
|
|
38
|
+
</xs:simpleType>
|
|
39
|
+
|
|
40
|
+
<!-- 1.7 Structure -->
|
|
41
|
+
<xs:simpleType name="structureValues">
|
|
42
|
+
<xs:restriction base="xs:token">
|
|
43
|
+
<xs:enumeration value="atomic"/>
|
|
44
|
+
<xs:enumeration value="collection"/>
|
|
45
|
+
<xs:enumeration value="networked"/>
|
|
46
|
+
<xs:enumeration value="hierarchical"/>
|
|
47
|
+
<xs:enumeration value="linear"/>
|
|
48
|
+
</xs:restriction>
|
|
49
|
+
</xs:simpleType>
|
|
50
|
+
|
|
51
|
+
<!-- 1.8 Aggregation Level -->
|
|
52
|
+
<xs:simpleType name="aggregationLevelValues">
|
|
53
|
+
<xs:restriction base="xs:token">
|
|
54
|
+
<xs:enumeration value="1"/>
|
|
55
|
+
<xs:enumeration value="2"/>
|
|
56
|
+
<xs:enumeration value="3"/>
|
|
57
|
+
<xs:enumeration value="4"/>
|
|
58
|
+
</xs:restriction>
|
|
59
|
+
</xs:simpleType>
|
|
60
|
+
|
|
61
|
+
<!-- 2.2 Status -->
|
|
62
|
+
<xs:simpleType name="statusValues">
|
|
63
|
+
<xs:restriction base="xs:token">
|
|
64
|
+
<xs:enumeration value="draft"/>
|
|
65
|
+
<xs:enumeration value="final"/>
|
|
66
|
+
<xs:enumeration value="revised"/>
|
|
67
|
+
<xs:enumeration value="unavailable"/>
|
|
68
|
+
</xs:restriction>
|
|
69
|
+
</xs:simpleType>
|
|
70
|
+
|
|
71
|
+
<!-- 2.3.1 Role -->
|
|
72
|
+
<xs:simpleType name="roleValues">
|
|
73
|
+
<xs:restriction base="xs:token">
|
|
74
|
+
<xs:enumeration value="author"/>
|
|
75
|
+
<xs:enumeration value="publisher"/>
|
|
76
|
+
<xs:enumeration value="unknown"/>
|
|
77
|
+
<xs:enumeration value="initiator"/>
|
|
78
|
+
<xs:enumeration value="terminator"/>
|
|
79
|
+
<xs:enumeration value="validator"/>
|
|
80
|
+
<xs:enumeration value="editor"/>
|
|
81
|
+
<xs:enumeration value="graphical designer"/>
|
|
82
|
+
<xs:enumeration value="technical implementer"/>
|
|
83
|
+
<xs:enumeration value="content provider"/>
|
|
84
|
+
<xs:enumeration value="technical validator"/>
|
|
85
|
+
<xs:enumeration value="educational validator"/>
|
|
86
|
+
<xs:enumeration value="script writer"/>
|
|
87
|
+
<xs:enumeration value="instructional designer"/>
|
|
88
|
+
<xs:enumeration value="subject matter expert"/>
|
|
89
|
+
</xs:restriction>
|
|
90
|
+
</xs:simpleType>
|
|
91
|
+
|
|
92
|
+
<!-- 3.2.1 Role -->
|
|
93
|
+
<xs:simpleType name="roleMetaValues">
|
|
94
|
+
<xs:restriction base="xs:token">
|
|
95
|
+
<xs:enumeration value="creator"/>
|
|
96
|
+
<xs:enumeration value="validator"/>
|
|
97
|
+
</xs:restriction>
|
|
98
|
+
</xs:simpleType>
|
|
99
|
+
|
|
100
|
+
<!-- 4.4.1.1 Type -->
|
|
101
|
+
<xs:simpleType name="typeValues">
|
|
102
|
+
<xs:restriction base="xs:token">
|
|
103
|
+
<xs:enumeration value="operating system"/>
|
|
104
|
+
<xs:enumeration value="browser"/>
|
|
105
|
+
</xs:restriction>
|
|
106
|
+
</xs:simpleType>
|
|
107
|
+
|
|
108
|
+
<!-- 4.4.1.2 Name -->
|
|
109
|
+
<xs:simpleType name="nameValues">
|
|
110
|
+
<xs:restriction base="xs:token">
|
|
111
|
+
<xs:enumeration value="pc-dos"/>
|
|
112
|
+
<xs:enumeration value="ms-windows"/>
|
|
113
|
+
<xs:enumeration value="macos"/>
|
|
114
|
+
<xs:enumeration value="unix"/>
|
|
115
|
+
<xs:enumeration value="multi-os"/>
|
|
116
|
+
<xs:enumeration value="none"/>
|
|
117
|
+
<xs:enumeration value="any"/>
|
|
118
|
+
<xs:enumeration value="netscape communicator"/>
|
|
119
|
+
<xs:enumeration value="ms-internet explorer"/>
|
|
120
|
+
<xs:enumeration value="opera"/>
|
|
121
|
+
<xs:enumeration value="amaya"/>
|
|
122
|
+
</xs:restriction>
|
|
123
|
+
</xs:simpleType>
|
|
124
|
+
|
|
125
|
+
<!-- 5.1 Interactivity Type -->
|
|
126
|
+
<xs:simpleType name="interactivityTypeValues">
|
|
127
|
+
<xs:restriction base="xs:token">
|
|
128
|
+
<xs:enumeration value="active"/>
|
|
129
|
+
<xs:enumeration value="expositive"/>
|
|
130
|
+
<xs:enumeration value="mixed"/>
|
|
131
|
+
</xs:restriction>
|
|
132
|
+
</xs:simpleType>
|
|
133
|
+
|
|
134
|
+
<!-- 5.2 Learning Resource Type -->
|
|
135
|
+
<xs:simpleType name="learningResourceTypeValues">
|
|
136
|
+
<xs:restriction base="xs:token">
|
|
137
|
+
<xs:enumeration value="exercise"/>
|
|
138
|
+
<xs:enumeration value="simulation"/>
|
|
139
|
+
<xs:enumeration value="questionnaire"/>
|
|
140
|
+
<xs:enumeration value="diagram"/>
|
|
141
|
+
<xs:enumeration value="figure"/>
|
|
142
|
+
<xs:enumeration value="graph"/>
|
|
143
|
+
<xs:enumeration value="index"/>
|
|
144
|
+
<xs:enumeration value="slide"/>
|
|
145
|
+
<xs:enumeration value="table"/>
|
|
146
|
+
<xs:enumeration value="narrative text"/>
|
|
147
|
+
<xs:enumeration value="exam"/>
|
|
148
|
+
<xs:enumeration value="experiment"/>
|
|
149
|
+
<xs:enumeration value="problem statement"/>
|
|
150
|
+
<xs:enumeration value="self assessment"/>
|
|
151
|
+
<xs:enumeration value="lecture"/>
|
|
152
|
+
</xs:restriction>
|
|
153
|
+
</xs:simpleType>
|
|
154
|
+
|
|
155
|
+
<!-- 5.3 Interactivity Level -->
|
|
156
|
+
<xs:simpleType name="interactivityLevelValues">
|
|
157
|
+
<xs:restriction base="xs:token">
|
|
158
|
+
<xs:enumeration value="very low"/>
|
|
159
|
+
<xs:enumeration value="low"/>
|
|
160
|
+
<xs:enumeration value="medium"/>
|
|
161
|
+
<xs:enumeration value="high"/>
|
|
162
|
+
<xs:enumeration value="very high"/>
|
|
163
|
+
</xs:restriction>
|
|
164
|
+
</xs:simpleType>
|
|
165
|
+
|
|
166
|
+
<!-- 5.4 Semantic Density -->
|
|
167
|
+
<xs:simpleType name="semanticDensityValues">
|
|
168
|
+
<xs:restriction base="xs:token">
|
|
169
|
+
<xs:enumeration value="very low"/>
|
|
170
|
+
<xs:enumeration value="low"/>
|
|
171
|
+
<xs:enumeration value="medium"/>
|
|
172
|
+
<xs:enumeration value="high"/>
|
|
173
|
+
<xs:enumeration value="very high"/>
|
|
174
|
+
</xs:restriction>
|
|
175
|
+
</xs:simpleType>
|
|
176
|
+
|
|
177
|
+
<!-- 5.5 Intended End User Role -->
|
|
178
|
+
<xs:simpleType name="intendedEndUserRoleValues">
|
|
179
|
+
<xs:restriction base="xs:token">
|
|
180
|
+
<xs:enumeration value="teacher"/>
|
|
181
|
+
<xs:enumeration value="author"/>
|
|
182
|
+
<xs:enumeration value="learner"/>
|
|
183
|
+
<xs:enumeration value="manager"/>
|
|
184
|
+
</xs:restriction>
|
|
185
|
+
</xs:simpleType>
|
|
186
|
+
|
|
187
|
+
<!-- 5.6 Context -->
|
|
188
|
+
<xs:simpleType name="contextValues">
|
|
189
|
+
<xs:restriction base="xs:token">
|
|
190
|
+
<xs:enumeration value="school"/>
|
|
191
|
+
<xs:enumeration value="higher education"/>
|
|
192
|
+
<xs:enumeration value="training"/>
|
|
193
|
+
<xs:enumeration value="other"/>
|
|
194
|
+
</xs:restriction>
|
|
195
|
+
</xs:simpleType>
|
|
196
|
+
|
|
197
|
+
<!-- 5.8 Difficulty -->
|
|
198
|
+
<xs:simpleType name="difficultyValues">
|
|
199
|
+
<xs:restriction base="xs:token">
|
|
200
|
+
<xs:enumeration value="very easy"/>
|
|
201
|
+
<xs:enumeration value="easy"/>
|
|
202
|
+
<xs:enumeration value="medium"/>
|
|
203
|
+
<xs:enumeration value="difficult"/>
|
|
204
|
+
<xs:enumeration value="very difficult"/>
|
|
205
|
+
</xs:restriction>
|
|
206
|
+
</xs:simpleType>
|
|
207
|
+
|
|
208
|
+
<!-- 6.1 Cost -->
|
|
209
|
+
<xs:simpleType name="costValues">
|
|
210
|
+
<xs:restriction base="xs:token">
|
|
211
|
+
<xs:enumeration value="yes"/>
|
|
212
|
+
<xs:enumeration value="no"/>
|
|
213
|
+
</xs:restriction>
|
|
214
|
+
</xs:simpleType>
|
|
215
|
+
|
|
216
|
+
<!-- 6.2 Copyright and Other Restrictions -->
|
|
217
|
+
<xs:simpleType name="copyrightAndOtherRestrictionsValues">
|
|
218
|
+
<xs:restriction base="xs:token">
|
|
219
|
+
<xs:enumeration value="yes"/>
|
|
220
|
+
<xs:enumeration value="no"/>
|
|
221
|
+
</xs:restriction>
|
|
222
|
+
</xs:simpleType>
|
|
223
|
+
|
|
224
|
+
<!-- 7.1 Kind -->
|
|
225
|
+
<xs:simpleType name="kindValues">
|
|
226
|
+
<xs:restriction base="xs:token">
|
|
227
|
+
<xs:enumeration value="ispartof"/>
|
|
228
|
+
<xs:enumeration value="haspart"/>
|
|
229
|
+
<xs:enumeration value="isversionof"/>
|
|
230
|
+
<xs:enumeration value="hasversion"/>
|
|
231
|
+
<xs:enumeration value="isformatof"/>
|
|
232
|
+
<xs:enumeration value="hasformat"/>
|
|
233
|
+
<xs:enumeration value="references"/>
|
|
234
|
+
<xs:enumeration value="isreferencedby"/>
|
|
235
|
+
<xs:enumeration value="isbasedon"/>
|
|
236
|
+
<xs:enumeration value="isbasisfor"/>
|
|
237
|
+
<xs:enumeration value="requires"/>
|
|
238
|
+
<xs:enumeration value="isrequiredby"/>
|
|
239
|
+
</xs:restriction>
|
|
240
|
+
</xs:simpleType>
|
|
241
|
+
|
|
242
|
+
<!-- 9.1 Purpose -->
|
|
243
|
+
<xs:simpleType name="purposeValues">
|
|
244
|
+
<xs:restriction base="xs:token">
|
|
245
|
+
<xs:enumeration value="discipline"/>
|
|
246
|
+
<xs:enumeration value="idea"/>
|
|
247
|
+
<xs:enumeration value="prerequisite"/>
|
|
248
|
+
<xs:enumeration value="educational objective"/>
|
|
249
|
+
<xs:enumeration value="accessibility restrictions"/>
|
|
250
|
+
<xs:enumeration value="educational level"/>
|
|
251
|
+
<xs:enumeration value="skill level"/>
|
|
252
|
+
<xs:enumeration value="security level"/>
|
|
253
|
+
<xs:enumeration value="competency"/>
|
|
254
|
+
</xs:restriction>
|
|
255
|
+
</xs:simpleType>
|
|
256
|
+
|
|
257
|
+
</xs:schema>
|