Skip to content
Snippets Groups Projects
Commit 5362b427 authored by albaizq's avatar albaizq
Browse files

fix uris and labels. New classes added

parent 9a67eeec
No related branches found
No related tags found
No related merge requests found
Pipeline #274 failed
......@@ -14,9 +14,9 @@
owl:versionIRI <https://saref.etsi.org/saref4lift/v1.1.1/> ;
dcterms:source <https://saref.etsi.org/sources/saref4lift/> ;
vann:preferredNamespaceUri "https://saref.etsi.org/saref4lift/" ;
owl:versionInfo "v1.2.1" ;
owl:versionInfo "v1.2.2" ;
dcterms:publisher <https://www.etsi.org/> ;
dcterms:modified "2021-02-22" ;
dcterms:modified "2021-02-23" ;
dcterms:title "SAREF extension for Smart Lifts"@en ;
vann:preferredNamespacePrefix "s4lift" ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
......@@ -66,6 +66,12 @@ owl:qualifiedCardinality rdf:type owl:AnnotationProperty .
# Object Properties
#################################################################
### http://www.opengis.net/ont/geosparql#hasGeometry
<http://www.opengis.net/ont/geosparql#hasGeometry> rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql#> ;
rdfs:label "hasGeometry" .
### https://saref.etsi.org/core/hasCommand
saref:hasCommand rdf:type owl:ObjectProperty ;
rdfs:domain saref:Function ;
......@@ -77,7 +83,6 @@ saref:hasCommand rdf:type owl:ObjectProperty ;
### https://saref.etsi.org/core/isMeasuredIn
saref:isMeasuredIn rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:comment "A relationship identifying the unit of measure used for a certain entity." ;
rdfs:isDefinedBy saref: ;
rdfs:label "is measured in" .
......@@ -85,6 +90,7 @@ saref:isMeasuredIn rdf:type owl:ObjectProperty ;
### https://saref.etsi.org/core/relatesToProperty
saref:relatesToProperty rdf:type owl:ObjectProperty ;
rdfs:comment "A relationship between a measurement and the property it relates to" ;
rdfs:isDefinedBy <https://saref.etsi.org/core> ;
rdfs:label "relates to property" .
......@@ -153,8 +159,7 @@ saref:relatesToProperty rdf:type owl:ObjectProperty ;
### https://saref.etsi.org/saref4lift/isMeasuredIn
:isMeasuredIn rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :NetworkCoverage ;
rdfs:range :Percentage .
rdfs:domain :NetworkCoverage .
### https://saref.etsi.org/saref4lift/receives
......@@ -167,6 +172,12 @@ saref:relatesToProperty rdf:type owl:ObjectProperty ;
rdfs:range saref:Command .
### https://saref.etsi.org/saref4lift/supportsNetworkTechnology
:supportsNetworkTechnology rdf:type owl:ObjectProperty ;
rdfs:comment "A relationship to determine the supported network technologies of the lift. Examples of technologies are 2G, 3G,4G, 5G and fixed line." ;
rdfs:label "supports network technology" .
### https://saref.etsi.org/saref4syst/hasSubSystem
<https://saref.etsi.org/saref4syst/hasSubSystem> rdf:type owl:ObjectProperty ;
rdfs:comment "Links a system to one of its sub systems." ;
......@@ -194,6 +205,13 @@ saref:hasManufacturer rdf:type owl:DatatypeProperty ;
rdfs:label "has manufacturer" .
### https://saref.etsi.org/core/hasTimestamp
saref:hasTimestamp rdf:type owl:DatatypeProperty ;
rdfs:comment "A relationship stating the timestamp of an entity (e.g. a measurement)." ;
rdfs:isDefinedBy saref: ;
rdfs:label "has timestamp" .
### https://saref.etsi.org/core/hasValue
saref:hasValue rdf:type owl:DatatypeProperty ;
rdfs:isDefinedBy saref: ;
......@@ -221,18 +239,25 @@ saref:hasValue rdf:type owl:DatatypeProperty ;
"has door status" .
### https://saref.etsi.org/saref4lift/hasInstallerLiftCompany
:hasInstallerLiftCompany rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:comment "A relationship identifying the installer company of the lift." ;
rdfs:label "has installer company" .
### https://saref.etsi.org/saref4lift/hasInstallerCompany
:hasInstallerCompany rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:comment "A relationship identifying the installer company of an entity." ;
rdfs:label "has installer company" .
### https://saref.etsi.org/saref4lift/hasMainEmergencyNumber
:hasMainEmergencyNumber rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:comment "Main emergency numbers to be called in case of emergency" ;
rdfs:label "has main Emergency Number" .
rdfs:label "has main emergency number" .
### https://saref.etsi.org/saref4lift/hasMaintenanceCompany
:hasMaintenanceCompany rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:comment "A relationship identifying the maintenance company of an entity." ;
rdfs:label "has maintenance company" .
### https://saref.etsi.org/saref4lift/hasNetworkValue
......@@ -256,8 +281,8 @@ saref:hasValue rdf:type owl:DatatypeProperty ;
### https://saref.etsi.org/saref4lift/hasPowerSupplyValue
:hasPowerSupplyValue rdf:type owl:DatatypeProperty ;
rdfs:domain :EmergencyPowerSupply ,
:StandardEmergencyPowerSupply ;
rdfs:domain :EmergencyPowerSupplySignal ,
:StandardEmergencyPowerSupplySignal ;
rdfs:range xsd:boolean .
......@@ -292,6 +317,35 @@ saref:hasValue rdf:type owl:DatatypeProperty ;
# Classes
#################################################################
### http://www.opengis.net/ont/geosparql#Feature
<http://www.opengis.net/ont/geosparql#Feature> rdf:type owl:Class ;
rdfs:subClassOf <http://www.opengis.net/ont/geosparql#SpatialObject> ;
rdfs:comment "This class represents the top-level feature type. This class is equivalent to GFI_Feature defined in ISO 19156:2011, and it is superclass of all feature types." ;
rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql#> ;
rdfs:label "Feature" .
### http://www.opengis.net/ont/geosparql#Geometry
<http://www.opengis.net/ont/geosparql#Geometry> rdf:type owl:Class ;
rdfs:subClassOf <http://www.opengis.net/ont/geosparql#SpatialObject> ;
rdfs:comment "The class represents the top-level geometry type. This class is equivalent to the UML class GM_Object defined in ISO 19107, and it is superclass of all geometry types." ;
rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql#> ;
rdfs:label "Geometry" .
### http://www.opengis.net/ont/geosparql#SpatialObject
<http://www.opengis.net/ont/geosparql#SpatialObject> rdf:type owl:Class ;
rdfs:isDefinedBy <http://www.opengis.net/ont/geosparql#> ;
rdfs:label "Spatial object" .
### http://www.opengis.net/ont/sf#Point
<http://www.opengis.net/ont/sf#Point> rdf:type owl:Class ;
rdfs:subClassOf <http://www.opengis.net/ont/geosparql#Geometry> ;
rdfs:isDefinedBy <http://www.opengis.net/ont/sf#> ,
"Point" .
### https://saref.etsi.org/core/Command
saref:Command rdf:type owl:Class ;
rdfs:comment "A directive that a device must support to perform a certain function. A command may act upon a state, but does not necessarily act upon a state. For example, the ON command acts upon the ON/OFF state, but the GET command does not act upon any state, it simply gives a directive to retrieve a certain value" ;
......@@ -372,27 +426,32 @@ saref:UnitOfMeasure rdf:type owl:Class ;
### https://saref.etsi.org/saref4lift/Alarm
:Alarm rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal .
rdfs:subClassOf :StatusSignal ;
rdfs:label "Alarm" .
### https://saref.etsi.org/saref4lift/AlarmInTheMachinery
:AlarmInTheMachinery rdf:type owl:Class ;
rdfs:subClassOf :Alarm .
rdfs:subClassOf :Alarm ;
rdfs:label "Alarm in the machinery" .
### https://saref.etsi.org/saref4lift/AlarmInTheWell
:AlarmInTheWell rdf:type owl:Class ;
rdfs:subClassOf :Alarm .
rdfs:subClassOf :Alarm ;
rdfs:label "Alarm in the well" .
### https://saref.etsi.org/saref4lift/AlarmVoiceCommunication
:AlarmVoiceCommunication rdf:type owl:Class ;
rdfs:subClassOf :Alarm .
rdfs:subClassOf :Alarm ;
rdfs:label "Alarm voice communication" .
### https://saref.etsi.org/saref4lift/AudioFault
:AudioFault rdf:type owl:Class ;
rdfs:subClassOf :Fault .
rdfs:subClassOf :FaultSignal ;
rdfs:label "Audio signal" .
### https://saref.etsi.org/saref4lift/BCSSignal
......@@ -401,78 +460,84 @@ saref:UnitOfMeasure rdf:type owl:Class ;
rdfs:label "Bidirectional communication system signal" .
### https://saref.etsi.org/saref4lift/BoardReset
:BoardReset rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to initiate the board reset" ;
rdfs:label "Board reset" .
### https://saref.etsi.org/saref4lift/BoardResetCommand
:BoardResetCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to initiate the board reset" ;
rdfs:label "Board reset command" .
### https://saref.etsi.org/saref4lift/CallCarToSpecificFloor
:CallCarToSpecificFloor rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to call a car to a specific floor" ;
rdfs:label "CallCarToSpecificFloor" .
### https://saref.etsi.org/saref4lift/CallCarToSpecificFloorCommand
:CallCarToSpecificFloorCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to call a car to a specific floor" ;
rdfs:label "Call car to specific floor command" .
### https://saref.etsi.org/saref4lift/CallsPerService
:CallsPerService rdf:type owl:Class ;
rdfs:subClassOf :StatisticSignal .
rdfs:subClassOf :StatisticSignal ;
rdfs:label "Call per service" .
### https://saref.etsi.org/saref4lift/CarAlarm
:CarAlarm rdf:type owl:Class ;
rdfs:subClassOf :Alarm .
rdfs:subClassOf :Alarm ;
rdfs:label "Car alarm" .
### https://saref.etsi.org/saref4lift/CarInUnlockingZone
:CarInUnlockingZone rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal .
rdfs:subClassOf :StatusSignal ;
rdfs:label "Car in unlocking zone" .
### https://saref.etsi.org/saref4lift/CarSignal
:CarSignal rdf:type owl:Class ;
rdfs:subClassOf :Signal .
rdfs:subClassOf :Signal ;
rdfs:label "Car signal" .
### https://saref.etsi.org/saref4lift/CurrentCarStop
:CurrentCarStop rdf:type owl:Class ;
rdfs:subClassOf :PositionSignal .
rdfs:subClassOf :PositionSignal ;
rdfs:label "Current car stop" .
### https://saref.etsi.org/saref4lift/DangerousFault
:DangerousFault rdf:type owl:Class ;
rdfs:subClassOf :Fault .
rdfs:subClassOf :FaultSignal ;
rdfs:label "Dangerous signal" .
### https://saref.etsi.org/saref4lift/DownwardTravels
:DownwardTravels rdf:type owl:Class ;
rdfs:subClassOf :StatisticSignal .
rdfs:subClassOf :StatisticSignal ;
rdfs:label "Downward travels" .
### https://saref.etsi.org/saref4lift/EmergencyPowerAlarm
:EmergencyPowerAlarm rdf:type owl:Class ;
rdfs:subClassOf :Alarm .
rdfs:subClassOf :Alarm ;
rdfs:label "Emergency power alarm" .
### https://saref.etsi.org/saref4lift/EmergencyPowerSupply
:EmergencyPowerSupply rdf:type owl:Class ;
rdfs:subClassOf :Signal .
### https://saref.etsi.org/saref4lift/Fault
:Fault rdf:type owl:Class ;
rdfs:subClassOf :FaultSignal .
### https://saref.etsi.org/saref4lift/EmergencyPowerSupplySignal
:EmergencyPowerSupplySignal rdf:type owl:Class ;
rdfs:subClassOf :Signal ;
rdfs:label "Emergency power supply signal" .
### https://saref.etsi.org/saref4lift/FaultSignal
:FaultSignal rdf:type owl:Class ;
rdfs:subClassOf :CarSignal .
rdfs:subClassOf :CarSignal ;
rdfs:label "Fault signal" .
### https://saref.etsi.org/saref4lift/FireOperation
:FireOperation rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal .
rdfs:subClassOf :StatusSignal ;
rdfs:label "Fire operation" .
### https://saref.etsi.org/saref4lift/FiremanLift
......@@ -483,7 +548,8 @@ saref:UnitOfMeasure rdf:type owl:Class ;
### https://saref.etsi.org/saref4lift/FloodAlarm
:FloodAlarm rdf:type owl:Class ;
rdfs:subClassOf :Alarm .
rdfs:subClassOf :Alarm ;
rdfs:label "Flood alarm" .
### https://saref.etsi.org/saref4lift/GoodsOnlySmartLift
......@@ -500,7 +566,8 @@ saref:UnitOfMeasure rdf:type owl:Class ;
### https://saref.etsi.org/saref4lift/InspectionOperation
:InspectionOperation rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal .
rdfs:subClassOf :StatusSignal ;
rdfs:label "Inspection operation" .
### https://saref.etsi.org/saref4lift/Load
......@@ -512,17 +579,20 @@ saref:UnitOfMeasure rdf:type owl:Class ;
### https://saref.etsi.org/saref4lift/MinorFault
:MinorFault rdf:type owl:Class ;
rdfs:subClassOf :Fault .
rdfs:subClassOf :FaultSignal ;
rdfs:label "Minor fault" .
### https://saref.etsi.org/saref4lift/MovingDownwardDirection
:MovingDownwardDirection rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal .
rdfs:subClassOf :StatusSignal ;
rdfs:label "Moving downward direction" .
### https://saref.etsi.org/saref4lift/MovingUpwardDirection
:MovingUpwardDirection rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal .
rdfs:subClassOf :StatusSignal ;
rdfs:label "Moving upward direction" .
### https://saref.etsi.org/saref4lift/Network
......@@ -538,78 +608,91 @@ saref:UnitOfMeasure rdf:type owl:Class ;
### https://saref.etsi.org/saref4lift/NetworkQualityBER
:NetworkQualityBER rdf:type owl:Class ;
rdfs:subClassOf :BCSSignal .
rdfs:subClassOf :BCSSignal ;
rdfs:label "Network quality BER" .
### https://saref.etsi.org/saref4lift/NetworkQualityRSSI
:NetworkQualityRSSI rdf:type owl:Class ;
rdfs:subClassOf :BCSSignal .
rdfs:subClassOf :BCSSignal ;
rdfs:label "Network quality RSSI" .
### https://saref.etsi.org/saref4lift/NumberOfCalls
:NumberOfCalls rdf:type owl:Class ;
rdfs:subClassOf :StatisticSignal .
rdfs:subClassOf :StatisticSignal ;
rdfs:label "Number of calls" .
### https://saref.etsi.org/saref4lift/NumberOfFaults
:NumberOfFaults rdf:type owl:Class ;
rdfs:subClassOf :StatisticSignal .
rdfs:subClassOf :StatisticSignal ;
rdfs:label "Number of faults" .
### https://saref.etsi.org/saref4lift/OutOfService
:OutOfService rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal .
rdfs:subClassOf :StatusSignal ;
rdfs:label "Out of service" .
### https://saref.etsi.org/saref4lift/Overload
:Overload rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal .
### https://saref.etsi.org/saref4lift/Percentage
:Percentage rdf:type owl:Class .
rdfs:subClassOf :StatusSignal ;
rdfs:label "Overload" .
### https://saref.etsi.org/saref4lift/PositionSignal
:PositionSignal rdf:type owl:Class ;
rdfs:subClassOf :CarSignal .
rdfs:subClassOf :CarSignal ;
rdfs:label "Position signal" .
### https://saref.etsi.org/saref4lift/RegisteredNetworkOperator
:RegisteredNetworkOperator rdf:type owl:Class ;
rdfs:subClassOf :BCSSignal .
rdfs:subClassOf :BCSSignal ;
rdfs:label "Registered network operator" .
### https://saref.etsi.org/saref4lift/SendCarToSpecificFloor
:SendCarToSpecificFloor rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to send a car to a specific floor" ;
rdfs:label "SendCarToSpecificFloor" .
### https://saref.etsi.org/saref4lift/SendCarToSpecificFloorCommand
:SendCarToSpecificFloorCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to send a car to a specific floor" ;
rdfs:label "Send car to specific floor command" .
### https://saref.etsi.org/saref4lift/SetOutOfService
:SetOutOfService rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to set a lift out of service" ;
rdfs:label "SetOutOfService" .
### https://saref.etsi.org/saref4lift/SetOutOfServiceCommand
:SetOutOfServiceCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to set a lift out of service" ;
rdfs:label "Set out of service command" .
### https://saref.etsi.org/saref4lift/SetRealTimeMode
:SetRealTimeMode rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to set the real time mode" ;
rdfs:label "SetRealTimeMode" .
### https://saref.etsi.org/saref4lift/SetRealTimeModeCommand
:SetRealTimeModeCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to set the real time mode" ;
rdfs:label "Set real time mode command" .
### https://saref.etsi.org/saref4lift/Signal
:Signal rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty saref:isMeasuredIn ;
owl:someValuesFrom saref:Measurement
owl:someValuesFrom saref:UnitOfMeasure
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :isAssociatedTo ;
owl:someValuesFrom saref:FeatureOfInterest
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasTimestamp ;
owl:someValuesFrom xsd:dateTime
] ,
[ rdf:type owl:Restriction ;
owl:onProperty saref:hasValue ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onDataRange owl:rational
] ;
rdfs:label "Signal" .
......@@ -618,7 +701,7 @@ saref:UnitOfMeasure rdf:type owl:Class ;
:SmartLiftEdgeComponent rdf:type owl:Class ;
rdfs:subClassOf saref:Device ,
<https://saref.etsi.org/saref4syst/System> ;
rdfs:comment "A Smart Lift Edge Component is dedicated to the hosting of SL additional modules in the case that they are not hosted directly in the Smart Lift Edge Control Unit. An example could be the case of an additional earthquake sensor added after the lift deployment and not controlled by the SLECU." ;
rdfs:comment "A Smart Lift Edge Component is dedicated to the hosting of smar lift additional modules in the case that they are not hosted directly in the Smart Lift Edge Control Unit. An example could be the case of an additional earthquake sensor added after the lift deployment and not controlled by the Smart Lift Edge Control Unit." ;
rdfs:label "Smart Lift Edge Component" .
......@@ -626,20 +709,23 @@ saref:UnitOfMeasure rdf:type owl:Class ;
:SmartLiftEdgeControlUnit rdf:type owl:Class ;
rdfs:subClassOf saref:Device ,
<https://saref.etsi.org/saref4syst/System> ;
rdfs:comment "A Smart Lift Edge Control Unit is the main element of a SLI and it is typically associated with the lift control cabinet" ;
rdfs:comment "A Smart Lift Edge Control Unit is the main element of a Smart Lift installation and it is typically associated with the lift control cabinet" ;
rdfs:label "Smart Lift Edge Control Unit" .
### https://saref.etsi.org/saref4lift/SmartLiftGroup
:SmartLiftGroup rdf:type owl:Class ;
rdfs:subClassOf <https://saref.etsi.org/saref4syst/System> ;
rdfs:subClassOf saref:FeatureOfInterest ,
<https://saref.etsi.org/saref4syst/System> ;
rdfs:comment "A Smart Lift Group represents the correlation of multiple Smart Lifts Installation and it is supported by the introduction of a Smart Lift Group identifier common each Smart Lifts Installation belonging to the same Smart Lift Group. Such kind of installations usually presents control units connected one each other to coordinate the movement and position of the different lifts, where the common commands (e.g. the call buttons) are given to one of these control units that acts as a principal master and coordinates the other installations or is composed by peer installations that coordinates one each othe" ;
rdfs:label "Smart Lift Group" .
### https://saref.etsi.org/saref4lift/SmartLiftInstallation
:SmartLiftInstallation rdf:type owl:Class ;
rdfs:subClassOf <https://saref.etsi.org/saref4syst/System> ,
rdfs:subClassOf <http://www.opengis.net/ont/geosparql#Feature> ,
saref:FeatureOfInterest ,
<https://saref.etsi.org/saref4syst/System> ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasDoorCloseTime ;
owl:someValuesFrom saref:Time
......@@ -652,6 +738,10 @@ saref:UnitOfMeasure rdf:type owl:Class ;
owl:onProperty :hasLimitLoad ;
owl:someValuesFrom :Load
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :supportsNetworkTechnology ;
owl:someValuesFrom :Network
] ,
[ rdf:type owl:Restriction ;
owl:onProperty <https://saref.etsi.org/saref4syst/hasSubSystem> ;
owl:someValuesFrom :SmartLiftEdgeComponent
......@@ -668,6 +758,10 @@ saref:UnitOfMeasure rdf:type owl:Class ;
owl:onProperty :hasMainEmergencyNumber ;
owl:someValuesFrom xsd:string
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasMaintenanceCompany ;
owl:someValuesFrom xsd:string
] ,
[ rdf:type owl:Restriction ;
owl:onProperty :hasSecondaryEmergencyTelephoneNumber ;
owl:someValuesFrom xsd:string
......@@ -686,73 +780,84 @@ saref:UnitOfMeasure rdf:type owl:Class ;
rdfs:label "Smart lift platform" .
### https://saref.etsi.org/saref4lift/StandardEmergencyPowerSupply
:StandardEmergencyPowerSupply rdf:type owl:Class ;
rdfs:subClassOf :Signal .
### https://saref.etsi.org/saref4lift/StandardEmergencyPowerSupplySignal
:StandardEmergencyPowerSupplySignal rdf:type owl:Class ;
rdfs:subClassOf :Signal ;
rdfs:label "Standard emergency power supply signal" .
### https://saref.etsi.org/saref4lift/StatisticSignal
:StatisticSignal rdf:type owl:Class ;
rdfs:subClassOf :Signal .
rdfs:subClassOf :Signal ;
rdfs:label "Statistic signal" .
### https://saref.etsi.org/saref4lift/StatusSignal
:StatusSignal rdf:type owl:Class ;
rdfs:subClassOf :CarSignal .
rdfs:subClassOf :CarSignal ;
rdfs:label "Status signal" .
### https://saref.etsi.org/saref4lift/TestEmergencyNumberCommand
:TestEmergencyNumberCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to test the emergency number" ;
rdfs:label "Test emergency number command" .
### https://saref.etsi.org/saref4lift/TestEmergencyNumber
:TestEmergencyNumber rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to test the emergency number" ;
rdfs:label "TestEmergencyNumber" .
### https://saref.etsi.org/saref4lift/TestRide
:TestRide rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal ;
rdfs:label "Test ride" .
### https://saref.etsi.org/saref4lift/TestRideCommand
:TestRideCommand rdf:type owl:Class ;
rdfs:subClassOf saref:Command ;
rdfs:comment "A type of command to test the ride" ;
rdfs:label "TestRideCommand" .
### https://saref.etsi.org/saref4lift/TestRideSignal
:TestRideSignal rdf:type owl:Class ;
rdfs:subClassOf :StatusSignal .
rdfs:label "Test ride command" .
### https://saref.etsi.org/saref4lift/TimeOfConfirmationOfLastPeriodicTest72hAttempt
:TimeOfConfirmationOfLastPeriodicTest72hAttempt rdf:type owl:Class ;
rdfs:subClassOf :BCSSignal .
rdfs:subClassOf :BCSSignal ;
rdfs:label "Time of confirmation of last periodic test 72h attempt" .
### https://saref.etsi.org/saref4lift/TimeOfLastPeriodicTest72hAttempt
:TimeOfLastPeriodicTest72hAttempt rdf:type owl:Class ;
rdfs:subClassOf :BCSSignal .
rdfs:subClassOf :BCSSignal ;
rdfs:label "Time of last periodic test 72h attempt" .
### https://saref.etsi.org/saref4lift/TotalFloorsCovered
:TotalFloorsCovered rdf:type owl:Class ;
rdfs:subClassOf :StatisticSignal .
rdfs:subClassOf :StatisticSignal ;
rdfs:label "Total floors covered" .
### https://saref.etsi.org/saref4lift/TotalResetSequence
:TotalResetSequence rdf:type owl:Class ;
rdfs:subClassOf :StatisticSignal .
rdfs:subClassOf :StatisticSignal ;
rdfs:label "Total reset sequence" .
### https://saref.etsi.org/saref4lift/TotalReverseDirection
:TotalReverseDirection rdf:type owl:Class ;
rdfs:subClassOf :StatisticSignal .
rdfs:subClassOf :StatisticSignal ;
rdfs:label "Total reverse direction" .
### https://saref.etsi.org/saref4lift/TotalTimeOpened
:TotalTimeOpened rdf:type owl:Class ;
rdfs:subClassOf :StatisticSignal .
rdfs:subClassOf :StatisticSignal ;
rdfs:label "Total time opened" .
### https://saref.etsi.org/saref4lift/UpwardTravels
:UpwardTravels rdf:type owl:Class ;
rdfs:subClassOf :StatisticSignal .
rdfs:subClassOf :StatisticSignal ;
rdfs:label "Upward travels" .
### https://saref.etsi.org/saref4syst/System
......@@ -766,33 +871,40 @@ saref:UnitOfMeasure rdf:type owl:Class ;
# Individuals
#################################################################
### http://www.ontology-of-units-of-measure.org/resource/om-2/Percentage
<http://www.ontology-of-units-of-measure.org/resource/om-2/Percentage> rdf:type owl:NamedIndividual ,
saref:UnitOfMeasure ;
rdfs:label "Percentage" .
### https://saref.etsi.org/saref4lift/Network2G
:Network2G rdf:type owl:NamedIndividual ,
:Network ;
rdfs:label "Network2G" .
rdfs:label "Network 2G" .
### https://saref.etsi.org/saref4lift/Network3G
:Network3G rdf:type owl:NamedIndividual ,
:Network ;
rdfs:label "3G" .
rdfs:label "Network 3G" .
### https://saref.etsi.org/saref4lift/Network4G
:Network4G rdf:type owl:NamedIndividual ,
:Network ;
rdfs:label "4G" .
rdfs:label "Network 4G" .
### https://saref.etsi.org/saref4lift/Network5G
:Network5G rdf:type owl:NamedIndividual ,
:Network ;
rdfs:label "5G" .
rdfs:label "Network 5G" .
### https://saref.etsi.org/saref4lift/NetworkFixedLine
:NetworkFixedLine rdf:type owl:NamedIndividual ,
:Network .
:Network ;
rdfs:label "Network fixed line" .
[ owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment