Skip to content
Snippets Groups Projects
Commit be69fe29 authored by Laura Daniele's avatar Laura Daniele
Browse files

Merge branch 'issue-64' into 'develop-v4.1.1'

Issue 64, closes #64

Closes #64

See merge request !46
parents 59f5038b 9227d86f
No related branches found
No related tags found
1 merge request!46Issue 64, closes #64
...@@ -16,18 +16,38 @@ ...@@ -16,18 +16,38 @@
dcterms:title "Example commodities"@en ; dcterms:title "Example commodities"@en ;
dcterms:description "Example commodities"@en . dcterms:description "Example commodities"@en .
ex:Electricity a saref:EnergyCommodity ;
rdfs:comment "A type of energy commodity"@en ; ## Examples of commodity categories: energy commodities that groups electricity, gas, propane (narrower than gas), coal, and natural resource commodities.
ex:EnergyCommodity a owl:Class ;
rdfs:subClassOf saref:Commodity ;
rdfs:label "Energy Commodity"@en ;
rdfs:comment "The class of energy commodities"@en .
ex:NaturalResourceCommodity a owl:Class ;
rdfs:subClassOf saref:Commodity ;
rdfs:label "Natural Resource Commodity"@en ;
rdfs:comment "The class of natural resource commodities"@en .
## Example commodities
ex:Electricity a ex:EnergyCommodity ;
rdfs:comment "The electricity energy commodity"@en ;
rdfs:label "Electricity"@en . rdfs:label "Electricity"@en .
ex:Gas a saref:EnergyCommodity , saref:NaturalResourceCommodity ; ex:Gas a ex:EnergyCommodity ;
rdfs:comment "A type of energy commodity"@en ; rdfs:comment "The gas energy commodity"@en ;
rdfs:label "Gas"@en . rdfs:label "Gas"@en .
ex:Coal a saref:EnergyCommodity , saref:NaturalResourceCommodity ; ex:Propane a ex:EnergyCommodity ;
rdfs:comment "A type of commodity"@en ; skos:broader ex:Gas ;
rdfs:comment "The propane energy commodity"@en ;
rdfs:label "Propane"@en .
ex:Coal a ex:EnergyCommodity ;
rdfs:comment "The coal energy commodity"@en ;
rdfs:label "Coal"@en . rdfs:label "Coal"@en .
ex:Water a saref:NaturalResourceCommodity ; ex:Water a ex:NaturalResourceCommodity ;
rdfs:comment "A type of commodity"@en ; rdfs:comment "The water natural resource commodity"@en ;
rdfs:label "Water"@en . rdfs:label "Water"@en .
...@@ -531,44 +531,6 @@ saref:Commodity rdfs:subClassOf ...@@ -531,44 +531,6 @@ saref:Commodity rdfs:subClassOf
owl:onProperty skos:narrower ; owl:onProperty skos:narrower ;
owl:allValuesFrom saref:Commodity ] . owl:allValuesFrom saref:Commodity ] .
## SAREF Core defines the category of energy commodities that groups electricity, gas, propane (narrower than gas), coal. It furthermore defines the category of natural resource commodity.
saref:EnergyCommodity a owl:Class ;
rdfs:subClassOf saref:Commodity ;
rdfs:label "Energy Commodity"@en ;
rdfs:comment "The class of energy commodities"@en ;
skos:historyNote "V3.2.1: New category of commodities saref:EnergyCommodity"@en .
saref:NaturalResourceCommodity a owl:Class ;
rdfs:subClassOf saref:Commodity ;
rdfs:label "Natural Resource Commodity"@en ;
rdfs:comment "The class of natural resource commodities"@en ;
skos:historyNote "V3.2.1: New category of commodities saref:NaturalResourceCommodity"@en .
## the following entities will be introduced in the next major revision of SAREF
saref:Electricity a saref:EnergyCommodity ;
rdfs:comment "The electricity energy commodity"@en ;
rdfs:label "Electricity"@en .
saref:Gas a saref:EnergyCommodity ;
rdfs:comment "The gas energy commodity"@en ;
rdfs:label "Gas"@en .
saref:Propane a saref:EnergyCommodity ;
skos:broader saref:Gas ;
rdfs:comment "The propane energy commodity"@en ;
rdfs:label "Propane"@en .
saref:Coal a saref:EnergyCommodity ;
rdfs:comment "The coal energy commodity"@en ;
rdfs:label "Coal"@en .
saref:Water a saref:NaturalResourceCommodity ;
rdfs:comment "The water natural resource commodity"@en ;
rdfs:label "Water"@en .
## isUsedFor ## isUsedFor
saref:isUsedFor a owl:ObjectProperty ; saref:isUsedFor a owl:ObjectProperty ;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment