summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--rdf/sdml-catalog.json6
-rw-r--r--rdf/waste.sdm29
3 files changed, 36 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 922ef17..d073794 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ BASE_IRI = https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/
PAD_ARTICLES = worlding
ARTICLES = worlding
-ONTOLOGIES = learning
+ONTOLOGIES = learning waste
PERL_FILES = bin/hedgedoc2quarto bin/xmp2rdfxml
diff --git a/rdf/sdml-catalog.json b/rdf/sdml-catalog.json
index 5c635f6..48d5392 100644
--- a/rdf/sdml-catalog.json
+++ b/rdf/sdml-catalog.json
@@ -6,6 +6,12 @@
"relative_url": "learning#",
"relative_path": "./learning.sdm"
}
+ },
+ "waste": {
+ "item": {
+ "relative_url": "waste#",
+ "relative_path": "./waste.sdm"
+ }
}
}
}
diff --git a/rdf/waste.sdm b/rdf/waste.sdm
new file mode 100644
index 0000000..748b5b3
--- /dev/null
+++ b/rdf/waste.sdm
@@ -0,0 +1,29 @@
+module waste base <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/rdf/> is
+
+ entity Citizen
+
+ entity Host
+
+ entity WasteCollector
+
+ structure Garbage is
+ grosserThan -> Trash
+ end
+
+ structure Trash is
+ grosserThan -> Rubbish
+ end
+
+ structure Rubbish is
+ grosserThan -> Waste
+ end
+
+ structure Waste is
+ grosserThan -> Litter
+ end
+
+ structure Litter is
+ grosserThan -> Refuse
+ end
+
+end