Example demonstrating how to represent information from group name StatusSignals as in ETSI TS 103 735, Clause 6.7
Turtle
@prefix ex: <https://saref.etsi.org/saref4lift/v2.1.1/example/TS103735_Clause_6_7_StatusSignals/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix saref: <https://saref.etsi.org/core/> .
@prefix s4syst: <https://saref.etsi.org/saref4syst/> .
@prefix s4bldg: <https://saref.etsi.org/saref4bldg/> .
@prefix s4lift: <https://saref.etsi.org/saref4lift/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix cdt: <http://w3id.org/lindt/custom_datatypes#>.
<https://saref.etsi.org/saref4lift/v2.1.1/example/TS103735_Clause_6_7_StatusSignals#> a dctype:Dataset ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
dcterms:conformsTo <https://saref.etsi.org/saref4lift/v2.1.1/> ;
dcterms:title "Status Signals example"@en ;
dcterms:description "Example demonstrating how to represent information from group name StatusSignals as in ETSI TS 103 735, Clause 6.7"@en .
<mailto:lift.1415@company1.com> a s4lift:SmartLiftInstallation .
# OutOfServiceState
## s4lift:OutOfServiceState is a state of a device
_:OutOfServiceStateObs a saref:Observation ;
saref:observes <mailto:lift.1415@company1.com> ;
saref:hasResult s4lift:OutOfServiceState ;
rdfs:comment "example of a s4lift:OutOfServiceState of a s4lift:SmartLiftInstallation"@en ;
saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime .
## s4lift:StatusSignal are signals that convey states
_:OutOfServiceSignal a s4lift:StatusSignal ;
rdfs:comment "example of a signal that conveys a saref:OutOfServiceState of a s4lift:SmartLiftInstallation"@en ;
saref:observes <mailto:lift.1415@company1.com> ;
s4lift:conveys _:OutOfServiceStateObs .