diff options
Diffstat (limited to 'rdf/waste_view.sdm')
-rw-r--r-- | rdf/waste_view.sdm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/rdf/waste_view.sdm b/rdf/waste_view.sdm new file mode 100644 index 0000000..4b0a19a --- /dev/null +++ b/rdf/waste_view.sdm @@ -0,0 +1,34 @@ +module waste_view waste_view <https://thoughtroam.abcdefghijklmnopqrstuvxyzæøå.dk/rdf/> is + + ; Grossness: https://english.stackexchange.com/a/272409 + import [ dc skos xsd ] + + @skos:prefLabel = "Waste perception Ontology"@en + @dc:description = "Ways that waste can be subjectively perceived"@en + @dc:created = @xsd:date(2024-04-27) + @dc:creator = <https://dr.jones.dk/me/#me> + @dc:license = <https://spdx.org/licenses/AGPL-3.0-or-later> + + enum Grossness of + @owl:equivalentClass = unsigned + Refuse is + @rdf:value = 1 + end + Litter is + @rdf:value = 2 + end + Waste is + @rdf:value = 3 + end + Rubbish is + @rdf:value = 4 + end + Trash is + @rdf:value = 5 + end + Garbage is + @rdf:value = 6 + end + end + +end |