-
Notifications
You must be signed in to change notification settings - Fork 0
/
interactivityType.ttl
38 lines (34 loc) · 2.25 KB
/
interactivityType.ttl
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
38
@prefix dc: <http://dublincore.org/elements/1.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix interact: <http://purl.org/dcx/lrmi-vocabs/interactivityType/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
interact: a skos:ConceptScheme ;
dct:title "LRMI Interact Type Vocabulary"@en ;
dct:creator "LRMI Task Group (DCMI)"@en ;
dct:description "A concept scheme that defines the predominate interact mode of the learning resource being described."@en ;
dct:source "Based on the IEEE Learning Object Metadata standard (IEEE/LOM - IEEE 1484.12.1-202)."@en ;
dct:created "2017-03-01"^^xsd:date ;
dct:modified "2017-12-20"^^xsd:date ;
dct:license <http://creativecommons.org/licenses/by/4.0/> ;
skos:hasTopConcept interact:active, interact:expositive, interact:mixed .
interact:active a skos:Concept ;
skos:prefLabel "active"@en ;
skos:definition "Learning that engages and challenges the learner's thinking using real-life and/or imaginary situations taking advantage of the opportunities for learning presented by investigating, exploring, events, and life experiences."@en ;
dct:source "Based on the IEEE Learning Object Metadata standard (IEEE 1484.12.1-202 (LOMv1.0))."@en ;
skos:inScheme interact: .
interact:expositive a skos:Concept ;
skos:prefLabel "expositive"@en ;
skos:definition "Use of a subject-matter expert to explain a concept or give clear and concise information in a purposeful way to the passive learner."@en ;
dct:source "Based on the IEEE Learning Object Metadata standard (IEEE 1484.12.1-202 (LOMv1.0))."@en ;
skos:inScheme interact: .
interact:mixed a skos:Concept ;
skos:prefLabel "mixed"@en ;
skos:definition "Instructional interactions comprised of a mix of active learning and expositive approaches."@en ;
dct:source "Based on IEEE Learning Object Metadata standard (IEEE 1484.12.1-202 (LOMv1.0))."@en ;
skos:inScheme interact: .