diff options
-rw-r--r-- | learn/core.sdm | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/learn/core.sdm b/learn/core.sdm index 8219b59..962f9ad 100644 --- a/learn/core.sdm +++ b/learn/core.sdm @@ -4,6 +4,7 @@ module core learn <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/learn/ dc doap foaf + owl rdfs skos xsd @@ -17,7 +18,7 @@ module core learn <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/learn/ @rdf:type = skos:ConceptScheme entity Objective is - @rdfs:subClassOf = doap:Project + @rdfs:subClassOf = owl:Thing @skos:prefLabel = "Objective"@en @skos:prefLabel = "Mål"@da @skos:description = "Abstract or concrete goal/skill/competence resulting from a succesful learning"@en @@ -25,6 +26,26 @@ module core learn <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/learn/ end + entity Process is + @rdfs:subClassOf = doap:Project + @skos:prefLabel = "Learning Process"@en + @skos:prefLabel = "Læringsproces"@da + @skos:description = "The process of acquiring new understanding"@en + identity id -> unknown + + hasObjective -> Objective + involvesAction -> Action + causesCognition -> Cognition + end + + entity Cognition is + @rdfs:subClassOf = owl:Thing + @skos:prefLabel = "Cognition"@en + @skos:prefLabel = "Erkendelse"@da + @skos:description = "The mental action or process of acquiring knowledge and understanding"@en + identity id -> unknown + end + entity Drive is @skos:description = "Motivating or demotivating factor for a learner towards a learning objective"@en identity id -> unknown @@ -43,7 +64,7 @@ module core learn <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/learn/ learnsFormalizedBy -> System learnsCausedBy -> Cause seeksObjective -> Objective - achievesObjective -> Objective + achievesCognition -> Cognition isEducatedBy -> Educator ; isTaughtBy -> Teacher ; isFacilitatedBy -> Facilitator @@ -77,7 +98,7 @@ module core learn <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/learn/ @skos:description = "Abstract or concrete action/practice/movement by a learner as part of a learning process"@en identity id -> unknown - contributesTo -> Objective + contributesTo -> Cognition end entity Cause is |