summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2024-05-26 08:32:04 +0200
committerJonas Smedegaard <dr@jones.dk>2024-06-04 17:35:42 +0200
commit4c21694718dfc2a7ca44ed70b36c91cef44926d6 (patch)
treedf32fe465dc2704b4b6f36acf808b906e5896616
parenteb4157bc98814797c362bbed58087c19a4068795 (diff)
add classes Process Cognition, distinctive from Objective
-rw-r--r--learn/core.sdm27
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