diff --git a/examples/functions.ttl b/examples/functions.ttl index 6e00125aaf93f91365d21c45333339ff9ad13739..1636a65139a2fbc67cc80c8b14ca0d5abb20e0ce 100644 --- a/examples/functions.ttl +++ b/examples/functions.ttl @@ -38,17 +38,24 @@ ex:MeteringFunction a saref:Function ; rdfs:comment "A metering function is a capability aimed at measuring and quantifying various parameters or quantities within a system or environment. It involves the systematic collection and recording of data related to specific attributes such as energy consumption, resource usage, or environmental conditions. Metering functions typically employ sensors or measuring devices to capture data accurately and may involve the aggregation, processing, and analysis of this data to derive insights or inform decision-making processes. Metering functions play a crucial role in monitoring and managing resources, optimizing efficiency, and ensuring compliance with regulations or standards across diverse domains, including energy management, utilities, and environmental monitoring."@en ; rdfs:label "Metering function"@en . -ex:GetCurrentMeterValueCommand a saref:GetCommand ; +ex:GetCommand a saref:Command ; + rdfs:comment "A command that requests something"@en ; + rdfs:label "Get command"@en . + +ex:GetCurrentMeterValueCommand a saref:Command ; + skos:broader ex:GetCommand ; rdfs:comment "A command that requests the current value of a meter"@en ; rdfs:label "Get current meter value command"@en ; saref:isCommandOf ex:MeteringFunction . -ex:GetMeterDataCommand a saref:GetCommand ; +ex:GetMeterDataCommand a saref:Command ; + skos:broader ex:GetCommand ; rdfs:comment "A command that requests data from a meter"@en ; rdfs:label "Get meter data command"@en ; saref:isCommandOf ex:MeteringFunction . -ex:GetMeterHistoryCommand a saref:GetCommand ; +ex:GetMeterHistoryCommand a saref:Command ; + skos:broader ex:GetCommand ; rdfs:comment "A command that requests historical data from a meter"@en ; rdfs:label "Get meter history command"@en ; saref:isCommandOf ex:MeteringFunction . @@ -68,7 +75,8 @@ ex:SetAbsoluteLevelCommand a saref:Command ; rdfs:label "Set absolute level command"@en ; saref:isCommandOf ex:LevelControlFunction . -ex:SetRelativeLevelCommand a saref:SetLevelCommand ; +ex:SetRelativeLevelCommand a saref:Command ; + skos:broader ex:SetLevelCommand ; rdfs:comment "A command that sets the level or value relative to the current state"@en ; rdfs:label "Set relative level command"@en ; saref:isCommandOf ex:LevelControlFunction . diff --git a/examples/hvac.ttl b/examples/hvac.ttl index 03f63fc26110c339359ec1e8948ddb005fb325bb..329da6114dafbb4f464b86af0018717b00f760fe 100644 --- a/examples/hvac.ttl +++ b/examples/hvac.ttl @@ -20,7 +20,7 @@ ex:HVAC a saref:FeatureKind ; rdfs:comment "Heating, Ventilation and Air Conditioning (HVAC) device that provides indoor environmental Comfort. A ex:HVAC is typically used to accomplish ex:Comfort."@en ; - saref:accomplishes saref:Comfort ; + saref:accomplishes ex:Comfort ; rdfs:label "HVAC"@en . diff --git a/examples/light_switch.ttl b/examples/light_switch.ttl index 8e22d7f71a91b081470d0f9e8b2654d1cb3e73ec..52e265162df8f9f079e0c9b5e68e9fb2819a5f34 100644 --- a/examples/light_switch.ttl +++ b/examples/light_switch.ttl @@ -21,9 +21,9 @@ ex:Light a saref:FeatureKind ; rdfs:label "Light"@en ; rdfs:comment "Lights, a feature kind."@en . -saref:LightSwitch a saref:FeatureKind ; - skos:broader saref:Switch ; - rdfs:comment "A switch that performs the saref:OnOffFunction, controls the property saref:Light, and can be found in the state saref:OnOffState. It can offer a switch on service. A saref:LightSwitch is typically used to accomplish saref:Lighting."@en ; +ex:LightSwitch a saref:FeatureKind ; + skos:broader ex:Switch ; + rdfs:comment "A switch that performs the saref:OnOffFunction, controls the property saref:Light, and can be found in the state ex:OnOffState. It can offer a switch on service. A ex:LightSwitch is typically used to accomplish ex:Lighting."@en ; rdfs:label "Light switch"@en ; saref:hasFunction ex:OnOffFunction ; saref:controls ex:Light ; diff --git a/examples/properties.ttl b/examples/properties.ttl index 7ecbda0ef51b294e80cb3c74a45672f9093c5f18..bbf9c82e516cde53a8e21a90094e946fad3c8bd8 100644 --- a/examples/properties.ttl +++ b/examples/properties.ttl @@ -16,11 +16,11 @@ dcterms:title "Example properties"@en ; dcterms:description "Example properties"@en . -saref:Energy a saref:Property ; +ex:Energy a saref:Property ; rdfs:comment "The property ex:Energy is defined as the capacity of a physical system to perform work. Work, in turn, is defined as the application of force over a distance, resulting in the transfer of energy. Energy exists in different forms, including kinetic energy (energy associated with motion), potential energy (energy stored in an object due to its position or configuration), thermal energy (energy associated with the temperature of an object), chemical energy (energy stored in chemical bonds), electrical energy (energy associated with the flow of electric charge), and various other forms. In physics, energy is considered a conserved quantity, meaning it cannot be created or destroyed, only transformed from one form to another. This principle is described by the law of conservation of energy."@en ; rdfs:label "Energy"@en . -saref:Humidity a owl:Class ; +ex:Humidity a owl:Class ; rdfs:subClassOf saref:Property ; rdfs:comment "The property ex:Humidity represents the measure of water vapor present in the air or another gas. It quantifies the amount of moisture in the atmosphere or within a confined space, typically expressed as a percentage of the maximum amount of moisture that the air or gas can hold at a given temperature. Humidity is a critical environmental parameter with implications for various domains, including agriculture, meteorology, and indoor air quality management."@en ; rdfs:label "Humidity"@en . diff --git a/examples/services.ttl b/examples/services.ttl index 6db67eb4f1e110fc4bc5400dea4dd1e66b3d0bb4..7e806aa06d09d0203fec963483fea1ad980ad446 100644 --- a/examples/services.ttl +++ b/examples/services.ttl @@ -17,7 +17,7 @@ dcterms:description "Example services"@en . -saref:SwitchOnService a saref:Service ; +ex:SwitchOnService a saref:Service ; rdfs:comment "A type of service that represents an on/off function to the network"@en ; rdfs:label "Switch on service"@en ; saref:represents ex:OnOffFunction . diff --git a/ontology/saref.ttl b/ontology/saref.ttl index 2fe2eb2000a8b6b2240b13bf765f3f90a0a210d8..d05d457efd9859be1211e3b903f4342f8353381b 100644 --- a/ontology/saref.ttl +++ b/ontology/saref.ttl @@ -272,12 +272,6 @@ saref:FeatureOfInterest rdfs:subClassOf [ ## The model and the manufacturer of a saref:FeatureKind or a saref:FeatureOfInterest can be explicited using DPs saref:hasModel and saref:hasManufacturer, respectively. -saref:hasDescription a owl:DatatypeProperty ; - rdfs:label "has description"@en ; - owl:deprecated true ; - rdfs:comment "DEPRECATED: The use of rdfs:comment is recommended instead."@en ; - rdfs:comment "A relationship providing a description of an entity (e.g., device). The value is expected to be a string or a string with language tag."@en . - saref:hasManufacturer a owl:DatatypeProperty ; rdfs:label "has manufacturer"@en ; rdfs:comment "A relationship identifying the manufacturer of an entity (e.g., device). The value is expected to be a string or a string with language tag."@en ; @@ -422,45 +416,6 @@ saref:isControlledBy a owl:ObjectProperty ; skos:historyNote "V3.2.1: Introduced property saref:isControlledBy."@en . -## Deprecated - -saref:measuresProperty a owl:ObjectProperty ; - rdfs:subPropertyOf saref:observes ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:measuresProperty is deprecated: will be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A relationship specifying the property that can be measured by a certain device"@en ; - rdfs:domain saref:Device ; - rdfs:range saref:Property ; - rdfs:label "measures property"@en . - -saref:isMeasuredByDevice a owl:ObjectProperty ; - rdfs:subPropertyOf saref:isObservedBy ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:isMeasuredByDevice is deprecated: will be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A relationship specifying the devices that can measure a certain property"@en ; - rdfs:domain saref:Property ; - rdfs:range saref:Device ; - rdfs:label "is measured by device"@en . - -saref:isControlledByDevice a owl:ObjectProperty ; - rdfs:subPropertyOf saref:isControlledBy ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:isControlledByDevice is deprecated: will be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A relationship specifying the devices that can control a certain property"@en ; - rdfs:domain saref:Property ; - rdfs:range saref:Device ; - rdfs:label "is controlled by device"@en . - -saref:controlsProperty a owl:ObjectProperty ; - rdfs:subPropertyOf saref:controls ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:controlsProperty is deprecated: will be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A relationship specifying the property that can be controlled by a certain device"@en ; - rdfs:domain saref:Device ; - rdfs:range saref:Property ; - rdfs:label "controls property"@en . - - ## SAREF Core provides some examples of classes of devices including appliances, sensors, actuators, and meters. saref:Appliance a owl:Class ; @@ -493,51 +448,6 @@ saref:Meter a owl:Class ; skos:historyNote "V3.2.1: Definition of Meter is simplified and grounded on saref:observes. Local restriction on saref:hasFunction is deleted."@en . -## Deprecated - -saref:HVAC a owl:Class ; - rdfs:subClassOf saref:Device ; - rdfs:comment "Heating, Ventilation and Air Conditioning (HVAC) device that provides indoor environmental comfort. A saref:HVAC is typically used to accomplish saref:Comfort."@en ; - rdfs:label "HVAC"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:HVAC for it's only an example."@en . - -saref:Switch a owl:Class ; - rdfs:subClassOf saref:Actuator ; - rdfs:comment "A device of category saref:Actuator that performs an actuating function of type saref:OnOffFunction or saref:OpenCloseFunction"@en ; - rdfs:label "Switch"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:Switch for it's only an example."@en . - -saref:DoorSwitch a owl:Class ; - rdfs:subClassOf saref:Switch ; - rdfs:comment "A switch that performs the saref:OpenCloseFunction, is used for controlling a door, and can be found in the state saref:OpenCloseState. A saref:DoorSwitch is typically used to accomplish saref:Safety."@en ; - rdfs:label "Door switch"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:DoorSwitch for it's only an example."@en . - -saref:LightSwitch a owl:Class ; - rdfs:subClassOf saref:Switch ; - rdfs:comment "A switch that performs the saref:OnOffFunction, controls the property saref:Light, and can be found in the state saref:OnOffState. It can offer a switch on service. A saref:LightSwitch is typically used to accomplish saref:Lighting."@en ; - rdfs:label "Light switch"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:LightSwitch for it's only an example."@en . - -saref:SmokeSensor a owl:Class ; - rdfs:subClassOf saref:Sensor ; - rdfs:comment "A sensor that performs the saref:SensingFunction and the saref:EventFunction, and is used for the purpose of sensing a property of type saref:Smoke. A saref:SmokeSensor is typically used to saref:accomplish saref:Safety."@en ; - rdfs:label "Smoke sensor"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:SmokeSensor for it's only an example."@en . - -saref:TemperatureSensor a owl:Class ; - rdfs:subClassOf saref:Sensor ; - rdfs:comment "A sensor that is used for the purpose of sensing a property of type saref:Temperature. A saref:TemperatureSensor is typically used to saref:accomplish saref:Comfort."@en ; - rdfs:label "Temperature sensor"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:TemperatureSensor for it's only an example."@en . - - # ETSI TS 103264 Clause 5.4: Tasks ## Class saref:Task represents goals for which a device is designed, from a user perspective. @@ -558,67 +468,6 @@ saref:Task rdfs:subClassOf owl:onProperty skos:narrower ; owl:allValuesFrom saref:Task ] . -## Deprecated - -saref:Cleaning a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Cleaning is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "Cleaning"@en . - -saref:Comfort a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Comfort is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "Comfort"@en . - -saref:Drying a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Drying is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "Drying"@en . - -saref:EnergyEfficiency a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:EnergyEfficiency is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "EnergyEfficiency"@en . - -saref:Entertainment a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Entertainment is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "Entertainment"@en . - -saref:Lighting a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Lighting is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "Lighting"@en . - -saref:MeterReading a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:MeterReading is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "Meter reading"@en . - -saref:Safety a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Safety is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "Safety"@en . - -saref:Washing a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Washing is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "Washing"@en . - -saref:WellBeing a saref:Task ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:WellBeing is deprecated: may be deleted in the next major revision of SAREF"@en ; - rdfs:comment "A type of task for which a device is designed"@en ; - rdfs:label "WellBeing"@en . ## Device kinds and devices can be linked to the one or more tasks they are designed to accomplish with OP saref:accomplishes. ## Property saref:accomplishes can also apply to other classes such as functions, commands, and procedure executions. @@ -656,35 +505,6 @@ saref:Commodity rdfs:subClassOf owl:onProperty skos:narrower ; owl:allValuesFrom saref:Commodity ] . -## Deprecated: Commodity classes will be turned into instances in the next major revision of SAREF - -saref:Electricity a owl:Class ; - rdfs:subClassOf saref:Commodity ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Electricity is deprecated: will be defined as an instance of saref:Commodity in the next major revision of SAREF"@en ; - rdfs:comment "A type of energy commodity"@en ; - rdfs:label "Electricity"@en . - -saref:Gas a owl:Class ; - rdfs:subClassOf saref:Commodity ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Gas is deprecated: will be defined as an instance of saref:Commodity in the next major revision of SAREF"@en ; - rdfs:comment "A type of energy commodity"@en ; - rdfs:label "Gas"@en . - -saref:Coal a owl:Class ; - rdfs:subClassOf saref:Commodity ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Coal is deprecated: will be defined as an instance of saref:Commodity in the next major revision of SAREF"@en ; - rdfs:comment "A type of commodity"@en ; - rdfs:label "Coal"@en . - -saref:Water a owl:Class ; - rdfs:subClassOf saref:Commodity ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Water is deprecated: will be defined as an instance of saref:Commodity in the next major revision of SAREF"@en ; - rdfs:comment "A type of commodity"@en ; - rdfs:label "Water"@en . ## SAREF Core defines the category of energy commodities that groups electricity, gas, propane (narrower than gas), coal. It furthermore defines the category of natural resource commodity. @@ -702,26 +522,26 @@ saref:NaturalResourceCommodity a owl:Class ; ## the following entities will be introduced in the next major revision of SAREF -# saref:Electricity a saref:EnergyCommodity ; -# rdfs:comment "The electricity energy commodity"@en ; -# rdfs:label "Electricity"@en . +saref:Electricity a saref:EnergyCommodity ; + rdfs:comment "The electricity energy commodity"@en ; + rdfs:label "Electricity"@en . -# saref:Gas a saref:EnergyCommodity ; -# rdfs:comment "The gas energy commodity"@en ; -# rdfs:label "Gas"@en . +saref:Gas a saref:EnergyCommodity ; + rdfs:comment "The gas energy commodity"@en ; + rdfs:label "Gas"@en . -# saref:Propane a saref:EnergyCommodity ; -# skos:broader saref:Gas ; -# rdfs:comment "The propane energy commodity"@en ; -# rdfs:label "Propane"@en . +saref:Propane a saref:EnergyCommodity ; + skos:broader saref:Gas ; + rdfs:comment "The propane energy commodity"@en ; + rdfs:label "Propane"@en . -# saref:Coal a saref:EnergyCommodity ; -# rdfs:comment "The coal energy commodity"@en ; -# rdfs:label "Coal"@en . +saref:Coal a saref:EnergyCommodity ; + rdfs:comment "The coal energy commodity"@en ; + rdfs:label "Coal"@en . -# saref:Water a saref:NaturalResourceCommodity ; -# rdfs:comment "The water natural resource commodity"@en ; -# rdfs:label "Water"@en . +saref:Water a saref:NaturalResourceCommodity ; + rdfs:comment "The water natural resource commodity"@en ; + rdfs:label "Water"@en . ## isUsedFor @@ -965,118 +785,6 @@ saref:isValueOfProperty ## Note that saref:hasPropertyValue and saref:isValueOfProperty are not inverse properties. -## Deprecated properties - -saref:Energy a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value measured in an energy unit (such as Kilowatt_Hour or Watt_hour). Furter specializations of the saref:Energy class can be found in the SAREF4ENER extension, where classes such as EnergyMax, EnergyMin and EnergyExpected are defined. "@en ; - rdfs:label "Energy"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Energy is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:Humidity a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a humidity unit"@en ; - rdfs:label "Humidity"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Humidity is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:Light a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a illuminance unit (lux)"@en ; - rdfs:label "Light"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Light is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:Motion a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a unit of measure for motion"@en ; - rdfs:label "Motion"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Motion is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:Occupancy a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value (saref:hasValue property) that is measured in a unit of measure for occupancy"@en ; - rdfs:label "Occupancy"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Occupancy is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:Power a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a power unit (such as watt or kilowatt). Further specializations of the saref:Power class can be found in the SAREF4ENER extension, where classes such as PowerMax, PowerMin and PowerExpected are defined."@en ; - rdfs:label "Power"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Power is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:Pressure a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a pressure unit (bar or pascal)"@en ; - rdfs:label "Pressure"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Pressure is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:Price a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property crelated to some measurements that are characterized by a certain value that is measured using saref:Currency"@en ; - rdfs:label "Price"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Price is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:Smoke a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a unit of measure for smoke"@en ; - rdfs:label "Smoke"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Smoke is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:Temperature a owl:Class ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured in a temperature unit (degree_Celsius, degree_Fahrenheit, or degree_kelvin)"@en ; - rdfs:label "Temperature"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:Temperature is deprecated: may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - - -## Deprecated units - -saref:EnergyUnit a owl:Class ; - rdfs:subClassOf saref:UnitOfMeasure ; - rdfs:comment "The unit of measure for energy"@en ; - rdfs:label "Energy unit"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:EnergyUnit is deprecated. Will be deleted in the next major revision of SAREF"@en . - -saref:IlluminanceUnit a owl:Class ; - rdfs:subClassOf saref:UnitOfMeasure ; - rdfs:comment "The unit of measure for light"@en ; - rdfs:label "Illuminance unit"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:IlluminanceUnit is deprecated. Will be deleted in the next major revision of SAREF"@en . - -saref:PowerUnit a owl:Class ; - rdfs:subClassOf saref:UnitOfMeasure ; - rdfs:comment "The unit of measure for power"@en ; - rdfs:label "Power unit"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:PowerUnit is deprecated. Will be deleted in the next major revision of SAREF"@en . - -saref:PressureUnit a owl:Class ; - rdfs:subClassOf saref:UnitOfMeasure ; - rdfs:comment "The unit of measure for pressure"@en ; - rdfs:label "Pressure unit"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:PressureUnit is deprecated. Will be deleted in the next major revision of SAREF"@en . - -saref:TemperatureUnit a owl:Class ; - rdfs:subClassOf saref:UnitOfMeasure ; - rdfs:comment "The unit of measure for temperature"@en ; - rdfs:label "Temperature unit"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:TemperatureUnit is deprecated. Will be deleted in the next major revision of SAREF"@en . - - - # ETSI TS 103264 Clause 5.7: States and states of interest ## In SAREF, states refer to the identifiable conditions that features of interest are or may be in, and that can be acted upon by devices, such as observed and controlled. @@ -1190,78 +898,6 @@ saref:hasState ## As the narrowest states of the taxonomy of states can be thought of as the state values, it is possible to assign a stable value to a state. -## Deprecated - -saref:CloseState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:CloseState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:OpenCloseState ; - rdfs:comment "The state of a device that is CLOSE"@en ; - rdfs:label "Close state"@en . - -saref:MultiLevelState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:MultiLevelState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:State ; - rdfs:comment "A type of state"@en ; - rdfs:label "Multi level state"@en . - -saref:OffState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OffState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:OnOffState ; - rdfs:comment "The state of a device that is Off"@en ; - rdfs:label "Off state"@en . - -saref:OnOffState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OnOffState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:State ; - rdfs:comment "A type of state"@en ; - rdfs:label "On off state"@en . - -saref:OnState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OnState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:OnOffState ; - rdfs:comment "The state of a device that is On"@en ; - rdfs:label "On state"@en . - -saref:OpenCloseState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OpenCloseState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:State ; - rdfs:comment "A type of state"@en ; - rdfs:label "Open close state"@en . - -saref:OpenState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OpenState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:OpenCloseState ; - rdfs:comment "The state of a device that is OPEN "@en ; - rdfs:label "Open state"@en . - -saref:StartState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:StartState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:StartStopState ; - rdfs:comment "The state of a device that is STARTED"@en ; - rdfs:label "Start state"@en . - -saref:StartStopState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:StartStopState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:State ; - rdfs:comment "A type of state"@en ; - rdfs:label "Start stop state"@en . - -saref:StopState rdf:type owl:Class ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:StopState is deprecated: will be defined as an instance of saref:State in the next major revision of SAREF"@en ; - rdfs:subClassOf saref:StartStopState ; - rdfs:comment "The state of a device that is STOPPED"@en ; - rdfs:label "Stop state"@en . - # ETSI TS 103264 Clause 5.8: Functions and functions of interest @@ -1279,103 +915,6 @@ saref:Function a owl:Class ; skos:example "To accomplish the task of washing clothes, a washing machine should have a function for washing."@en ; skos:historyNote "V3.2.1: Simplified definition and axiomatization of saref:Function. Added examples."@en . -## Deprecated - -saref:SensingFunction a owl:Class ; - rdfs:subClassOf saref:Function ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:SensingFunction is deprecated: may be defined as an instance of saref:Function in the next major revision of SAREF"@en ; - rdfs:comment "A function that allows to transmit data from sensors, such as measurement values (e.g., temperature) or sensing data (e.g., occupancy)"@en ; - rdfs:label "Sensing function"@en . - -saref:hasSensingRange a owl:ObjectProperty ; - rdfs:comment "A relationship between a sensing function and a measurement identifying the range of a sensor detection"@en ; - rdfs:domain saref:SensingFunction ; - rdfs:range saref:Measurement ; - rdfs:label "has sensing range"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:hasSensingRange is deprecated together with saref:SensingFunction. And may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:hasSensorType a owl:ObjectProperty ; - rdfs:comment "A relationship identifying the sensing type of a sensor detection (i.e., Temperature, Occupancy, Humidity, Motion , Smoke, Pressure, etc.) "@en ; - rdfs:domain saref:SensingFunction ; - rdfs:range saref:Property ; - rdfs:label "has sensor type"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:hasSensingRange is deprecated together with saref:SensingFunction. Use saref:hasDeviceKind instead."@en . - -saref:EventFunction a owl:Class ; - rdfs:subClassOf saref:Function ; - rdfs:comment "A function that allows to notify about some relevant activity; e.g., that a certain threshold value has been exceeded or that some object has moved."@en ; - rdfs:label "Event function"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:EventFunction is deprecated: may be defined as an instance of saref:Function in the next major revision of SAREF"@en . - -saref:hasThresholdMeasurement a owl:ObjectProperty ; - rdfs:comment "A relationship associated with an event function to notify that a certain threshold measurement has been exceeded"@en ; - rdfs:domain saref:EventFunction ; - rdfs:range saref:Measurement ; - rdfs:label "has threshold measurement"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:hasThresholdMeasurement is deprecated together with saref:EventFunction. And may be defined as an instance of saref:Property in the next major revision of SAREF"@en . - -saref:MeteringFunction a owl:Class ; - rdfs:subClassOf saref:Function ; - rdfs:comment "A function that allows to get data from a meter, such as current meter reading or instantaneous demand"@en ; - rdfs:label "Metering function"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:MeteringFunction is deprecated: may be defined as an instance of saref:Function in the next major revision of SAREF"@en . - -saref:hasMeterReading a owl:ObjectProperty ; - rdfs:comment "A relationship between a metering function and the measurement of the reading"@en ; - rdfs:domain saref:MeteringFunction ; - rdfs:range saref:Measurement ; - rdfs:label "has meter reading"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: deprecated saref:hasMeterReading together with saref:Measurement and saref:MeteringFunction"@en . - -saref:hasMeterReadingType a owl:ObjectProperty ; - rdfs:comment "A relationship identifying the reading type of a metering function (e.g., Water, Gas, Pressure , Energy , Power, etc.)"@en ; - rdfs:domain saref:MeteringFunction ; - rdfs:range saref:Property ; - rdfs:label "has meter reading type"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: deprecated saref:hasMeterReadingType together with saref:MeteringFunction"@en . - -saref:LevelControlFunction a owl:Class ; - rdfs:subClassOf saref:ActuatingFunction ; - rdfs:comment "An actuating function that allows to do level adjustments of a property in a certain range (e.g., 0%-100%), such as dimming a light in a room or setting the speed of an electric motor. "@en ; - rdfs:label "Level control function"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:LevelControlFunction is deprecated: may be defined as an instance of saref:Function in the next major revision of SAREF"@en . - -saref:StartStopFunction a owl:Class ; - rdfs:subClassOf saref:ActuatingFunction ; - rdfs:comment "An actuating function that allows to start and stop a device"@en ; - rdfs:label "Start stop function"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:StartStopFunction is deprecated: may be defined as an instance of saref:Function in the next major revision of SAREF"@en . - -saref:OpenCloseFunction a owl:Class ; - rdfs:subClassOf saref:ActuatingFunction ; - rdfs:comment "An actuating function that allows to open and close a device"@en ; - rdfs:label "Open close function"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OpenCloseFunction is deprecated: may be defined as an instance of saref:Function in the next major revision of SAREF"@en . - -saref:OnOffFunction a owl:Class ; - rdfs:subClassOf saref:ActuatingFunction ; - rdfs:comment "An actuating function that allows to switch on and off an actuator"@en ; - rdfs:label "On off function"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OnOffFunction is deprecated: may be defined as an instance of saref:Function in the next major revision of SAREF"@en . - -saref:ActuatingFunction a owl:Class ; - rdfs:subClassOf saref:Function ; - rdfs:comment "A function that allows to transmit data to actuators, such as level settings (e.g., temperature) or binary switching (e.g., open/close, on/off)"@en ; - rdfs:label "Actuating function"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:ActuatingFunction is deprecated: may be defined as an instance of saref:Function in the next major revision of SAREF"@en . ## Functions can be organized in a taxonomy using OPs skos:narrower and skos:broader. @@ -1624,141 +1163,6 @@ saref:hasCommand owl:propertyChainAxiom ( saref:hasCommandOfInterest saref:hasCommandKind ) . -## Deprecated - -saref:ToggleCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Toggle command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:ToggleCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:GetCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Get command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:GetCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:NotifyCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Notify command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:NotifyCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:GetSensingDataCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of get command"@en ; - rdfs:label "Get sensing data command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:GetSensingDataCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:GetCurrentMeterValueCommand a owl:Class ; - rdfs:subClassOf saref:GetCommand ; - rdfs:comment "A type of get command"@en ; - rdfs:label "Get current meter value command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:GetCurrentMeterValueCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:GetMeterDataCommand a owl:Class ; - rdfs:subClassOf saref:GetCommand ; - rdfs:comment "A type of get command"@en ; - rdfs:label "Get meter data command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:GetMeterDataCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:GetMeterHistoryCommand a owl:Class ; - rdfs:subClassOf saref:GetCommand ; - rdfs:comment "A type of get command"@en ; - rdfs:label "Get meter history command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:GetMeterHistoryCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:SetAbsoluteLevelCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of set level command"@en ; - rdfs:label "Set absolute level command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:SetAbsoluteLevelCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:SetRelativeLevelCommand a owl:Class ; - rdfs:subClassOf saref:SetLevelCommand ; - rdfs:comment "A type of set level command"@en ; - rdfs:label "Set relative level command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:SetRelativeLevelCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:SetLevelCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Set level command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:SetLevelCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:StepDownCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Step down command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:StepDownCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:StepUpCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Step up command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:StepUpCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:PauseCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Pause command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:PauseCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:StartCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Start command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:StartCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:StopCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Stop command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:StopCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:CloseCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Close command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:CloseCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:OpenCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Open command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OpenCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:OnCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "On command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OnCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - -saref:OffCommand a owl:Class ; - rdfs:subClassOf saref:Command ; - rdfs:comment "A type of command"@en ; - rdfs:label "Off command"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:OffCommand is deprecated: may be defined as an instance of saref:Command in the next major revision of SAREF"@en . - # ETSI TS 103264 Clause 5.10: Services and Operations @@ -1825,15 +1229,6 @@ saref:Service owl:cardinality 1 ] . -## Deprecated - -saref:SwitchOnService a owl:Class ; - rdfs:subClassOf saref:Service ; - rdfs:comment "A type of service that represents an on/off function to the network"@en ; - rdfs:label "Switch on service"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:SwitchOnService is deprecated for it is just an example. It may be deleted in the next major revision of SAREF"@en . - ## A saref:Operation is the means of a service to communicate in a procedure-type manner over the network (i.e. transmit data to/from other devices). It is the –machine interpretable– exposure of a –human understandable– command to a network. @@ -1920,27 +1315,6 @@ saref:madeExecution a owl:ObjectProperty ; rdfs:range saref:ProcedureExecution . -## Deprecated - - -saref:makesMeasurement a owl:ObjectProperty ; - owl:inverseOf saref:measurementMadeBy ; - rdfs:comment "A relation between a device and the measurements it makes. Such measurement will link together the value of the measurement, its unit of measure and the property to which it relates."@en ; - rdfs:domain saref:Device ; - rdfs:range saref:Measurement ; - rdfs:label "makes measurement"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:makesMeasurement is deprecated as one of the properties related to saref:Measurement. It may be deleted in the next major revision of SAREF"@en . - -saref:measurementMadeBy a owl:ObjectProperty ; - rdfs:comment "A relation between a measurement and the device that made it."@en ; - rdfs:domain saref:Measurement ; - rdfs:range saref:Device ; - rdfs:label "measurement made by"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: saref:makesMeasurement is deprecated as one of the properties related to saref:Measurement. It may be deleted in the next major revision of SAREF"@en . - - ## A procedure execution may be linked to its inputs using OP saref:hasInput . ## A procedure execution may be linked to its result using OP saref:hasResult. @@ -2062,81 +1436,6 @@ saref:Actuation a owl:Class ; owl:minCardinality 1 ] . -## Deprecated - -saref:Measurement a owl:Class ; - rdfs:subClassOf [ a owl:Restriction ; - owl:onProperty saref:isMeasurementOf ; - owl:allValuesFrom saref:FeatureOfInterest - ] , - [ a owl:Restriction ; - owl:onProperty saref:isMeasuredIn ; - owl:allValuesFrom saref:UnitOfMeasure - ] , - [ a owl:Restriction ; - owl:onProperty saref:relatesToProperty ; - owl:allValuesFrom saref:Property - ] , - [ a owl:Restriction ; - owl:onProperty saref:isMeasuredIn ; - owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; - owl:onClass saref:UnitOfMeasure - ] , - [ a owl:Restriction ; - owl:onProperty saref:relatesToProperty ; - owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ; - owl:onClass saref:Property - ] , - [ a owl:Restriction ; - owl:onProperty saref:hasTimestamp ; - owl:allValuesFrom xsd:dateTime - ] , - [ a owl:Restriction ; - owl:onProperty saref:hasValue ; - owl:cardinality "1"^^xsd:nonNegativeInteger - ] ; - rdfs:comment "Represents the measured value made over a property. It is also linked to the unit of measure in which the value is expressed and the timestamp of the measurement."@en ; - rdfs:label "Measurement"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:Measurement in favour of saref:Observation, to generalize to observation of states and convergence with SOSA/SSN."@en . - -saref:hasMeasurement a owl:ObjectProperty ; - rdfs:comment "A relationship between a feature of interest and a measurement about it"@en ; - rdfs:domain saref:FeatureOfInterest ; - rdfs:range saref:Measurement ; - rdfs:label "has measurement"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:hasMeasurement together with saref:Measurement."@en . - -saref:isMeasurementOf a owl:ObjectProperty ; - owl:inverseOf saref:hasMeasurement ; - rdfs:comment "A relationship between a measurement and the feature of interest whose quality was measured"@en ; - rdfs:domain saref:Measurement ; - rdfs:range saref:FeatureOfInterest ; - rdfs:label "isMeasurementOf"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:isMeasurementOf together with saref:Measurement."@en . - -saref:relatesToProperty a owl:ObjectProperty ; - owl:inverseOf saref:relatesToMeasurement ; - rdfs:comment "A relationship between a measurement and the property it relates to"@en ; - rdfs:domain saref:Measurement ; - rdfs:range saref:Property ; - rdfs:label "relates to property"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:isMeasurementOf together with saref:Measurement."@en . - -saref:relatesToMeasurement a owl:ObjectProperty ; - rdfs:comment "A relationship between a property and the measurements it relates to"@en ; - rdfs:domain saref:Property ; - rdfs:range saref:Measurement ; - rdfs:label "relates to measurement"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:isMeasurementOf together with saref:Measurement."@en . - - - - # ETSI TS 103264 Clause 5.12: Profiles @@ -2200,55 +1499,6 @@ saref:profileHasPrice a owl:ObjectProperty ; rdfs:domain saref:Profile ; rdfs:range saref:PropertyValue . -# deprecate, use saref:profileHasPrice instead -saref:hasPrice a owl:ObjectProperty ; - owl:deprecated true ; - skos:historyNote "saref:hasPrice is deprecated in v3.2.1, and may be deleted in the next major revision of SAREF. Use saref:profileHasPrice instead."@en ; - rdfs:comment "A relationship indentifying the price associated to an entity"@en ; - rdfs:range saref:Price ; - rdfs:label "has price"@en . - -saref:Price a owl:Class ; - owl:deprecated true; - skos:historyNote "Class saref:Price is deprecated in v3.2.1. In the next major revision of SAREF, it may be defined as an instance of saref:Property."@en ; - rdfs:subClassOf saref:Property ; - rdfs:comment "A saref:Property related to some measurements that are characterized by a certain value that is measured using saref:Currency"@en ; - rdfs:label "Price"@en . - -saref:Currency a owl:Class ; - owl:deprecated true; - skos:historyNote "Class saref:Currency is deprecated in v3.2.1 and may deleted in the next major revision of SAREF. Existing code lists and taxonomies can be reused instead."@en ; - rdfs:subClassOf saref:UnitOfMeasure ; - rdfs:comment "The class of units of measure for price"@en ; - rdfs:label "Currency"@en . - -# Other deprecated entities - -saref:hasTime a owl:ObjectProperty ; - rdfs:comment "A relationship to associate time information to an entity"@en ; - rdfs:range saref:Time ; - rdfs:label "has time"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:hasTime and use OWL Time instead whenever possible."@en . - -saref:Time a owl:Class ; - rdfs:comment "A class that allows to specify the time concept."@en ; - rdfs:label "Time"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:Time and use OWL Time instead whenever possible."@en . - -saref:hasTypicalConsumption a owl:ObjectProperty ; - rdfs:comment "A relationship identifying the typical (energy or power) consumption of a device"@en ; - rdfs:label "has typical consumption"@en ; - owl:deprecated true ; - skos:historyNote "V3.2.1: Deprecated saref:hasTypicalConsumption. May be defined as an instance of saref:Property in the next major revision of SAREF."@en . - -saref:isAbout a owl:ObjectProperty ; - owl:deprecated true; - skos:historyNote "Property saref:isAbout is too vague and has been deprecated in v3.2.1."@en ; - rdfs:comment "A relationship identifying what an entity, such as a profile, is about"@en ; - rdfs:label "isAbout"@en . - # New in V3.2.1