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/v1.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/v1.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/v1.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 .
<mailto:lift.1415@company1.com> saref:hasState _:FloodInTheWellState .
_:FloodInTheWellState a s4lift:FloodInTheWellState .
_:FloodInTheWellState rdfs:comment "example of a s4lift:FloodInTheWellState of a s4lift:SmartLiftInstallation"@en .
_:FloodInTheWellState saref:hasTimestamp "2021-03-15T12:00:00Z"^^xsd:dateTime .
_:FloodInTheWellSignal a s4lift:StatusSignal , s4lift:FaultSignal .
_:FloodInTheWellSignal rdfs:comment "example of a fault signal that conveys a s4lift:FloodInTheWellState of a s4lift:SmartLiftInstallation"@en .
_:FloodInTheWellSignal saref:isAbout <mailto:lift.1415@company1.com> .
_:FloodInTheWellSignal s4lift:conveys _:FloodInTheWellState .
# 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).
<mailto:lift.1415@company1.com> a s4lift:SmartLiftInstallation .
<mailto:lift.1415@company1.com> saref:hasState _:fault .
_:fault a s4lift:SmartLiftInstallationFaultState .
_:fault rdfs:label "01xx" .
_:fault saref:hasTimestamp "2020-05-03T12:00:00Z"^^xsd:dateTime .
_:faultSignal a s4lift:StatusSignal , s4lift:FaultSignal .
_:faultSignal s4lift:conveys _:fault .