diff --git a/examples/s4mari-sensor-example.ttl b/examples/s4mari-sensor-example.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..6a19a2f0a42a38c414ad7405d0fc29f7162630c4
--- /dev/null
+++ b/examples/s4mari-sensor-example.ttl
@@ -0,0 +1,52 @@
+@prefix : .
+@prefix owl: .
+@prefix rdf: .
+@prefix xml: .
+@prefix xsd: .
+@prefix rdfs: .
+@base .
+
+ rdf:type owl:Ontology ;
+ owl:versionIRI ;
+ owl:imports .
+
+
+# Represents a sensor on a mooring rig off-shore from Austevoll, Norway.
+### http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example#Austevoll_Temperature_Sensor_1063
+:Austevoll_Temperature_Sensor_1063 rdf:type owl:NamedIndividual ,
+ ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:hasValue :Temperature_Measurement_20241128
+ ] .
+
+
+# Represents an observation made by the Austevoll sensor at a specific time.
+### http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example#Temperature_Measurement_20241128
+:Temperature_Measurement_20241128 rdf:type owl:NamedIndividual ,
+ ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:hasValue :Water_Temperature_20241128
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:hasValue "2024-11-28T12:00:00Z"^^xsd:dateTime
+ ] .
+
+# Represents a specific observation result as part of the observation made by the Austevoll sensor.
+# This result indicates a specific value and a specific unit it is measured in.
+### http://www.semanticweb.org/ispa/ontologies/2024/10/s4mari-sensor-example#Water_Temperature_20241128
+:Water_Temperature_20241128 rdf:type owl:NamedIndividual ,
+ [ rdf:type owl:Class ;
+ owl:oneOf (
+ )
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:hasValue
+ ] ,
+ [ rdf:type owl:Restriction ;
+ owl:onProperty ;
+ owl:hasValue "3.455"^^xsd:double
+ ] .
\ No newline at end of file