diff --git a/examples/commodities.ttl b/examples/commodities.ttl
index f4733228fe1872198dcb178eb9a9bf88f8b071ff..278b93c7832b807a6cd10707053daba4edc84cba 100644
--- a/examples/commodities.ttl
+++ b/examples/commodities.ttl
@@ -16,18 +16,38 @@
     dcterms:title "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 .
 
-ex:Gas a saref:EnergyCommodity , saref:NaturalResourceCommodity ;
-    rdfs:comment "A type of energy commodity"@en ;
+ex:Gas a ex:EnergyCommodity ;
+    rdfs:comment "The gas energy commodity"@en ;
     rdfs:label "Gas"@en .
 
-ex:Coal a saref:EnergyCommodity , saref:NaturalResourceCommodity ;
-    rdfs:comment "A type of commodity"@en ;
+ex:Propane a ex:EnergyCommodity ;
+    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 .
 
-ex:Water a saref:NaturalResourceCommodity ;
-    rdfs:comment "A type of commodity"@en ;
+ex:Water a ex:NaturalResourceCommodity ;
+    rdfs:comment "The water natural resource commodity"@en ;
     rdfs:label "Water"@en .
diff --git a/ontology/saref.ttl b/ontology/saref.ttl
index 0d9d78e682a4dc14d5ef5cbfd0e72798f7766a9a..6438b6a7b4fad94606e84a414873e4ff975b108a 100644
--- a/ontology/saref.ttl
+++ b/ontology/saref.ttl
@@ -531,44 +531,6 @@ saref:Commodity rdfs:subClassOf
             owl:onProperty skos:narrower ;
             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
 
 saref:isUsedFor a owl:ObjectProperty ;