summaryrefslogtreecommitdiff
path: root/rdf/learning.sdm
blob: 27e930e64f82be362fd8c9235182f026641b6b01 (plain)
  1. module learning learning <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/rdf/> is
  2. import [ dc skos xsd ]
  3. @skos:prefLabel = "Learning Ontology"@en
  4. @dc:description = "General domain ontology on learning"@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. @rdf:type = skos:ConceptScheme
  9. entity Objective is
  10. @skos:prefLabel = "Objective"@en
  11. @skos:prefLabel = "Mål"@da
  12. @skos:description = "Abstract or concrete goal/skill/competence resulting from a succesful learning"@en
  13. identity id -> unknown
  14. end
  15. entity Learner is
  16. @skos:description = "Agent subject to a learning process"@en
  17. identity id -> unknown
  18. learnsWithin -> Space
  19. learnsUsing -> Material
  20. learnsThrough -> Action
  21. learnsFormalizedBy -> System
  22. learnsCausedBy -> Cause
  23. seeksObjective -> Objective
  24. achievesObjective -> Objective
  25. isEducatedBy -> Educator
  26. ; isTaughtBy -> Teacher
  27. ; isFacilitatedBy -> Facilitator
  28. ; isEvaluatedBy -> Evaluator
  29. ; isInstructedBy -> Instructor
  30. collaboratesWith -> Learner
  31. end
  32. entity Educator is
  33. @skos:description = "Agent aiding a learner towards an objective"@en
  34. @skos:description = "Agent abstractly or concretely guiding a learner towards an objective"@en
  35. ; @skos:narrower = Teacher, Instructor, Facilitator, Evaluator
  36. identity id -> unknown
  37. educates -> Learner
  38. educatesAbout -> Objective
  39. educatesUsing -> Material
  40. educatesFormalizedBy -> System
  41. end
  42. entity System is
  43. @skos:description = "Set of principles/methods/conventions for structuring a learning process"@en
  44. ; @skos:narrower = School_of_thought, Dogma, Principle
  45. identity id -> unknown
  46. end
  47. entity Action is
  48. @skos:description = "Abstract or concrete action/practice/movement by a learner as part of a learning process"@en
  49. identity id -> unknown
  50. contributesTo -> Objective
  51. end
  52. entity Cause is
  53. @skos:description = "Originating reason for a learner to initiate a learning process"@en
  54. identity id -> unknown
  55. causesAction -> Action
  56. end
  57. entity Drive is
  58. @skos:description = "Motivating or demotivating factor for a learner towards a learning objective"@en
  59. identity id -> unknown
  60. end
  61. entity Material is
  62. @skos:description = "Sets of information intended to aid a learner in reaching a learning objective"@en
  63. ; @skos:narrower = School_book, Prior_Knowledge
  64. identity id -> unknown
  65. end
  66. ;; the "evaluation"
  67. entity Evaluation
  68. entity Method is
  69. @skos:description = "Way of approaching a learning process"@en
  70. identity id -> unknown
  71. requiresMaterial -> Material
  72. isPartOf -> System
  73. end
  74. end