Turtle
@prefix saref: <https://saref.etsi.org/core/> .
@prefix ex: <https://saref.etsi.org/saref4syst/v1.1.2/example/example/> .
@prefix s4syst: <https://saref.etsi.org/saref4syst/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix dcterms: <http://purl.org/dc/terms/>.
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@base <https://saref.etsi.org/saref4syst/v1.1.2/example/example/> .
<https://saref.etsi.org/saref4syst/v1.1.2/example/example#>
rdf:type dctype:Dataset ;
dcterms:title "The example for SAREF4SYST"@en ;
dcterms:abstract "This example illustrates some concepts of SAREF4SYST" ;
dcterms:description "This example illustrates some concepts of SAREF4SYST" ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
dcterms:conformsTo <https://saref.etsi.org/saref4syst/v1.1.2/> , <https://saref.etsi.org/core/v3.1.1/> .
# -- the instantiation of the SAREF4SYST pattern. --
ex:ElectricPowerSystem a owl:Class ;
rdfs:subClassOf s4syst:System ;
rdfs:label "Electric Power System"@en ;
rdfs:comment "The class of electric power systems."@en .
ex:subElectricPowerSystemOf a owl:ObjectProperty ;
rdfs:subPropertyOf s4syst:subSystemOf ;
rdfs:label "sub electric power system of"@en .
# ...
# -- the instances --
<electric_vehicle> a s4syst:System .
<electric_vehicle_service_equipment> a s4syst:System .
# Connected systems interact in some ways.
# The exact meaning of interact is defined by sub-properties of s4syst:connectedTo.
<electric_vehicle> s4syst:connectedTo <electric_vehicle_service_equipment> .
# for example ex:exchangesElectricityWith can be defined to specify that electric energy flows between the <electric_vehicle_service_equipment> and the electric vehicle <electric_vehicle>.
ex:exchangesElectricityWith a owl:ObjectProperty .
<electric_vehicle> ex:exchangesElectricityWith <electric_vehicle_service_equipment> .
# A system can be a sub-system of another system.
<battery> s4syst:subSystemOf <electric_vehicle> .
# Properties of subsystems somehow contribute to the properties of the super system.
# The exact meaning of this contribution is defined by sub properties of s4syst:subSystemOf.
<fridge/1> ex:subElectricPowerSystemOf <kitchen/1> .
# A connection between two s4syst:Systems, modelled by s4syst:connectedTo,
# describes the potential interactions between connected s4syst:Systems.
# A connection can be qualified using class s4syst:Connection.
<connection> s4syst:connectsSystem <electric_vehicle> , <electric_vehicle_service_equipment> .
<electric_vehicle> s4syst:connectedThrough <connection> .
<electric_vehicle_service_equipment> s4syst:connectedThrough <connection> .
# A s4syst:System connects to other s4syst:Systems at connection points.
# A connection point belongs to one and only one s4syst:System, and can be described using the class s4syst:ConnectionPoint.
<electric_vehicle> s4syst:connectsAt <plug_high_voltage> , <normal_plug> , <three_phase_connection_point> .