summaryrefslogtreecommitdiff
path: root/rdf/learning.sdm
blob: 4f886166ff825bca24edb0fe954cb4dd9b2d892b (plain)
  1. module learning base <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/rdf/> is
  2. import [ dc skos xsd ]
  3. @skos:prefLabel = "Learning Ontology"@en
  4. @dc:description = "Tentacular learning as defined by Ernst Schraube"@en
  5. @dc:created = @xsd:date(2024-04-26)
  6. @dc:creator = <https://dr.jones.dk/me/#me>
  7. @dc:license = <https://spdx.org/licenses/AGPL-3.0-or-later>
  8. ;; Illeris
  9. entity Learner is
  10. identity id -> unknown
  11. isFacilitatedBy -> Teacher
  12. end
  13. entity Teacher is
  14. identity id -> unknown
  15. facilitates -> Learner
  16. end
  17. entity Material
  18. entity Teaching
  19. entity School
  20. ;; the "what"
  21. entity Goal
  22. ;; the "why"
  23. structure Motivation is
  24. type -> MotivationType
  25. motivatedBy -> Motivator
  26. end
  27. enum MotivationType of
  28. Defensive
  29. Expansive
  30. end
  31. ;; the "how"
  32. structure Movement is
  33. type -> MotivationType
  34. end
  35. enum MovementType of
  36. Affinitive
  37. Definitive
  38. end
  39. ;; the "evaluation"
  40. entity Evaluation
  41. entity Motivator
  42. ; affectsMotivation
  43. entity Method
  44. entity Expectation
  45. entity Prelearned
  46. ; entity World
  47. entity
  48. entity
  49. end