Example demonstrating how to represent information from group name FaultSignals as in ETSI TS 103 735, Clause 6.9
Turtle
@prefix ex: <https://saref.etsi.org/saref4lift/v2.1.1/example/TS103735_Clause_6_9_FaultSignals/> .
@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_9_FaultSignals#> a dctype:Dataset ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
dcterms:conformsTo <https://saref.etsi.org/saref4lift/v2.1.1/> ;
dcterms:title "Fault Signals example"@en ;
dcterms:description "Example demonstrating how to represent information from group name FaultSignals as in ETSI TS 103 735, Clause 6.9"@en .
# The fault signals describe some faults.
<mailto:lift.1415@company1.com> a s4lift:SmartLiftInstallation .
_:FloodInTheWellStateObs a saref:Observation ;
saref:observes <mailto:lift.1415@company1.com> ;
saref:hasResult s4lift:FloodInTheWellState ;
rdfs:comment "example of a s4lift:FloodInTheWellState of a s4lift:SmartLiftInstallation"@en ;
saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime .
_:FloodInTheWellSignal a s4lift:StatusSignal , s4lift:FaultSignal ;
rdfs:comment "example of a fault signal that conveys a s4lift:FloodInTheWellState of a s4lift:SmartLiftInstallation"@en ;
saref:observes <mailto:lift.1415@company1.com> ;
s4lift:conveys _:FloodInTheWellStateObs .
# faults from EN 627
## s4lift:SmartLiftInstallationFaultState is a faulty state of a smart lift. The fault rdf:label shall be one of the values defined in EN 627, (e.g.: "01xx" broken security chain).
_:faultobs a saref:Observation ;
saref:observes <mailto:lift.1415@company1.com> ;
saref:hasResult [ a s4lift:SmartLiftInstallationFaultState ; saref:hasValue "01xx" ] ;
rdfs:comment "example of a s4lift:SmartLiftInstallationFaultState of a s4lift:SmartLiftInstallation"@en ;
saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime .