summaryrefslogtreecommitdiff
path: root/rdf/learning.sdm
blob: 5018c23266eb63c568aaef71a0584664b000cd6f (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. usesMethod -> Method
  32. end
  33. entity Educator is
  34. @skos:description = "Agent aiding a learner towards an objective"@en
  35. @skos:description = "Agent abstractly or concretely guiding a learner towards an objective"@en
  36. ; @skos:narrower = Teacher, Instructor, Facilitator, Evaluator
  37. identity id -> unknown
  38. educates -> Learner
  39. educatesAbout -> Objective
  40. educatesUsing -> Material
  41. educatesFormalizedBy -> System
  42. end
  43. entity System is
  44. @skos:description = "Set of principles/methods/conventions for structuring a learning process"@en
  45. ; @skos:narrower = School_of_thought, Dogma, Principle
  46. identity id -> unknown
  47. end
  48. entity Action is
  49. @skos:description = "Abstract or concrete action/practice/movement by a learner as part of a learning process"@en
  50. identity id -> unknown
  51. contributesTo -> Objective
  52. end
  53. entity Cause is
  54. @skos:description = "Originating reason for a learner to initiate a learning process"@en
  55. identity id -> unknown
  56. causesAction -> Action
  57. end
  58. entity Drive is
  59. @skos:description = "Motivating or demotivating factor for a learner towards a learning objective"@en
  60. identity id -> unknown
  61. end
  62. entity Material is
  63. @skos:description = "Sets of information intended to aid a learner in reaching a learning objective"@en
  64. ; @skos:narrower = School_book, Prior_Knowledge
  65. identity id -> unknown
  66. end
  67. ;; the "evaluation"
  68. entity Evaluation
  69. entity Method is
  70. @skos:description = "Way of approaching a learning process"@en
  71. identity id -> unknown
  72. requiresMaterial -> Material
  73. isPartOf -> System
  74. end
  75. end