http://www.dfki.de/~cullrich/instrucionalobjects.owl#Auxiliary
A learning object of the type "auxiliary" provides information about fundamentals that is not necessary for understanding the domain, but supports the instructional process.
Instances of instrucionalobjects.owl:Auxiliary can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class instrucionalobjects.owl:Auxiliary | |||
instrucionalobjects.owl:isFor | owl:ObjectProperty | The concept the satellite is for. | instrucionalobjects.owl:Fundamental |
From class instrucionalobjects.owl:InstructionalObject | |||
instrucionalobjects.owl:hasField | owl:DatatypeProperty | Corresponds to the personal interests or major field of study (university setting) of the learner. | owl:Thing |
instrucionalobjects.owl:hasLearningContext | owl:DatatypeProperty | Describes the educational context of the intended target audience of a resource. | xsd:string |
instrucionalobjects.owl:hasTypicalLearningTime | owl:DatatypeProperty | Approximate or typical time it takes to work with the resource. | xsd:duration |
@prefix : <http://www.dfki.de/~cullrich/instrucionalobjects.owl#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
:Auxiliary a owl:Class ;
rdfs:comment "A learning object of the type \"auxiliary\" provides information about fundamentals that is not necessary for understanding the domain, but supports the instructional process."^^xsd:string ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom :Fundamental ;
owl:onProperty :isFor ],
[ a owl:Restriction ;
owl:onProperty :isFor ;
owl:someValuesFrom :Fundamental ],
:InstructionalObject .