From 403889087e41efe94d4c7f788a35ebbd714f3666 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Fri, 26 Apr 2024 21:49:18 +0200 Subject: initial draft SDML-based learning ontology --- rdf/learning.sdm | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++ rdf/sdml-catalog.json | 11 ++++++++ 2 files changed, 83 insertions(+) create mode 100644 rdf/learning.sdm create mode 100644 rdf/sdml-catalog.json (limited to 'rdf') diff --git a/rdf/learning.sdm b/rdf/learning.sdm new file mode 100644 index 0000000..c85654c --- /dev/null +++ b/rdf/learning.sdm @@ -0,0 +1,72 @@ +module learning base is + + import [ dc skos xsd ] + + @skos:prefLabel = "Learning Ontology"@en + @dc:description = "Tentacular learning as defined by Ernst Schraube"@en + @dc:created = @xsd:date("2024-04-26 Fri") + @dc:creator = + @dc:license = + + ;; Illeris + entity Learner is + identity id -> unknown + + isFacilitatedBy -> Teacher + end + + entity Teacher is + identity id -> unknown + + facilitates -> Learner + end + + entity Material + + entity Teaching + + entity School + + ;; the "what" + entity Goal + + ;; the "why" + structure Motivation is + type -> MotivationType + motivatedBy -> Motivator + end + + enum MotivationType of + Defensive + Expansive + end + + ;; the "how" + structure Movement is + type -> MotivationType + end + + enum MovementType of + Affinitive + Definitive + end + + ;; the "evaluation" + entity Evaluation + + entity Motivator +; affectsMotivation + + entity Method + + entity Expectation + + entity Prelearned + +; entity World + + entity + + entity + +end diff --git a/rdf/sdml-catalog.json b/rdf/sdml-catalog.json new file mode 100644 index 0000000..7e6a4af --- /dev/null +++ b/rdf/sdml-catalog.json @@ -0,0 +1,11 @@ +{ + "base": "https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/rdf/", + "entries": { + "vehicle": { + "item": { + "relative_url": "learning#", + "relative_path": "./learning.sdm" + } + } + } +} -- cgit v1.2.3