From 0152443d75079a5e7e9a23e0c93c6d58202ecc7b Mon Sep 17 00:00:00 2001
From: Jonas Smedegaard <dr@jones.dk>
Date: Wed, 22 May 2024 11:17:16 +0200
Subject: use ontologies foaf doap, added as stubs

---
 learn/core.sdm    | 11 +++++++----
 sdml-catalog.json | 12 ++++++++++++
 stub/doap.sdm     |  1 +
 stub/foaf.sdm     |  1 +
 4 files changed, 21 insertions(+), 4 deletions(-)
 create mode 100644 stub/doap.sdm
 create mode 100644 stub/foaf.sdm

diff --git a/learn/core.sdm b/learn/core.sdm
index 01a705f..8219b59 100644
--- a/learn/core.sdm
+++ b/learn/core.sdm
@@ -2,7 +2,9 @@ module core learn <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/learn/
 
   import [
     dc
-;    foaf <http://xmlns.com/foaf/0.1/>
+    doap
+    foaf
+    rdfs
     skos
     xsd
   ]
@@ -15,6 +17,7 @@ module core learn <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/learn/
   @rdf:type = skos:ConceptScheme
 
   entity Objective is
+    @rdfs:subClassOf = doap:Project
     @skos:prefLabel = "Objective"@en
     @skos:prefLabel = "Mål"@da
     @skos:description = "Abstract or concrete goal/skill/competence resulting from a succesful learning"@en
@@ -29,8 +32,8 @@ module core learn <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/learn/
     drivesLearner -> Learner
   end
 
-  entity Learner is
-;    @rdf:type = foaf:Person
+  entity Learner foaf:Person is
+    @rdfs:subClassOf = foaf:Person
     @skos:description = "Agent subject to a learning process"@en
     identity id -> unknown
 
@@ -52,7 +55,7 @@ module core learn <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/learn/
   end
 
   entity Educator is
-;    @rdf:type = foaf:Person
+    @rdfs:subClassOf = foaf:Person
     @skos:description = "Agent aiding a learner towards an objective"@en
     @skos:description = "Agent abstractly or concretely guiding a learner towards an objective"@en
 ;    @skos:narrower = Teacher, Instructor, Facilitator, Evaluator
diff --git a/sdml-catalog.json b/sdml-catalog.json
index 87429f1..ef488cb 100644
--- a/sdml-catalog.json
+++ b/sdml-catalog.json
@@ -24,6 +24,18 @@
         "relative_url": "waste/view#",
         "relative_path": "waste/view.sdm"
       }
+    },
+    "doap": {
+      "item": {
+        "relative_url": "stub/doap#",
+        "relative_path": "stub/doap.sdm"
+      }
+    },
+    "foaf": {
+      "item": {
+        "relative_url": "stub/foaf#",
+        "relative_path": "stub/foaf.sdm"
+      }
     }
   }
 }
diff --git a/stub/doap.sdm b/stub/doap.sdm
new file mode 100644
index 0000000..84fe655
--- /dev/null
+++ b/stub/doap.sdm
@@ -0,0 +1 @@
+module doap is end
diff --git a/stub/foaf.sdm b/stub/foaf.sdm
new file mode 100644
index 0000000..e3c58ce
--- /dev/null
+++ b/stub/foaf.sdm
@@ -0,0 +1 @@
+module foaf is end
-- 
cgit v1.2.3