summaryrefslogtreecommitdiff
path: root/rdf/learning.sdm
blob: d465b71483fd41f5ad1fa601a077b7673f6d82bf (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. receives -> Teaching
  12. establishes -> Learning
  13. end
  14. entity Teacher is
  15. identity id -> unknown
  16. facilitates -> Learning
  17. teaches -> Teaching
  18. end
  19. entity Material
  20. structure Learning is
  21. strengthenedBy -> Motivation
  22. weakenedBy -> Distraction
  23. end
  24. structure Teaching is
  25. differentFrom -> Learning
  26. end
  27. entity School
  28. ;; the "what"
  29. entity Goal
  30. ;; the "why"
  31. structure Motivation is
  32. type -> MotivationType
  33. motivatedBy -> Motivator
  34. end
  35. enum MotivationType of
  36. Defensive
  37. Expansive
  38. end
  39. ;; the "how"
  40. structure Movement is
  41. type -> MotivationType
  42. end
  43. enum MovementType of
  44. Affinitive
  45. Definitive
  46. end
  47. ;; the "evaluation"
  48. entity Evaluation
  49. entity Motivator
  50. ; affectsMotivation
  51. entity Method
  52. entity Expectation
  53. entity Prelearned
  54. ; entity World
  55. entity
  56. entity
  57. end