Newer
Older
@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 vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix s4ehaw: <https://saref.etsi.org/saref4ehaw/> .
@prefix s4envi: <https://saref.etsi.org/saref4envi/> .
@prefix s4wear: <https://saref.etsi.org/saref4wear/> .
<https://saref.etsi.org/saref4ehaw/> rdf:type owl:Ontology ;
owl:imports <https://saref.etsi.org/core/> ;
dcterms:creator <http://www-public.imtbs-tsp.eu/~girodgen/> ;
dcterms:contributor <https://www.linkedin.com/in/lina-nachabe-2b292457/> ,
<https://research.utwente.nl/en/persons/jo%C3%A3o-luiz-moreira> ,
<https://pdi.fbk.eu/people/profile/dragoni> ,
<http://www.maxime-lefrancois.info/> ;
dcterms:publisher <https://www.etsi.org/> ;
dcterms:license <https://forge.etsi.org/etsi-software-license> ;
dcterms:source <https://forge.etsi.org/rep/SAREF/saref4ehaw/> ;
Marc Girod-Genet
committed
owl:versionInfo "1.0" ;
vann:preferredNamespacePrefix "s4ehaw" ;
vann:preferredNamespaceUri "https://saref.etsi.org/saref4ehaw/" ;
dcterms:issued "2020-02-01"^^xsd:date ;
dcterms:modified "2020-05-01"^^xsd:date ;
dcterms:title "SAREF4EHAW: an extension of SAREF for eHealth Ageing Well domain"@en ;
dcterms:description """The objective of SAREF4EHAW is to extend SAREF ontology for the eHealth/Ageing-well (EHAW) vertical. Clause 4.1 of the present document shortly introduces a high level view of the envisioned SAREF4EHAW semantic model and modular ontology, with the retained concepts (i.e. classes) and their relations.
SAREF4EHAW extension has been specified and formalised by investigating EHAW domain related resources, as reported in ETSI TR 103 509, such as: potential stakeholders, standardization initiatives, alliances/associations, European projects, EC directives, existing ontologies, and data repositories. Therefore, SAREF4EHAW modular ontology shall both:
- Allow the implementation of a limited set of typical EHAW related use cases already identified in ETSI TR 103 509, i.e.
- Use case 1 “elderly at home monitoring and support”,
- Use case 2 “monitoring and support of healthy lifestyles for citizens”,
- Use case 3 “Early Warning System (EWS) and Cardiovascular Accidents detection”.
- Fulfil the eHealth Ageing Well related requirements provided in ETSI TR 103 509, mainly the ontological ones that were mostly taken as input for the ontology specification.
SAREF4EHAW mainly reuses the following existing ontologies: SAREF, ETSI SmartBAN reference model, SAREF 4 Environment extension, SAREF 4 Wearables extension, SAREF4health ontology which is a very first try to somehow extend SAREF ontology for the health vertical (it has nothing to do with ETSI SAREF4XYZ naming convention). The following figure presents the high level view of SAREF4EHAW ontology.
![SAREF4SYST overview](diagrams/SAREF4EHAW_Model.jpg)
For semantic interoperability handling purposes, an ontology based solution, combined with sensing-as-a-service and WoT strategies, is retained for SAREF4EHAW. Therefore, an upper level ontology, at service level, shall also behas been fully modelled (Service class and sub-classes depicted in the previous figure).
For embedded semantic analytics purposes, SAREF4EHAW shall behas been designed using the modularity principle (see ETSI TR 103 509) and can thus be mainly described by the following self-contained knowledge sub-ontologies (or modules): HealthActor, Ban, HealthDevice, Function (measured data related concepts included) and Service."""^^<http://www.iana.org/assignments/media-types/text/markdown> .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/contributor
dcterms:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dcterms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dcterms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/issued
dcterms:issued rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
dcterms:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/modified
dcterms:modified rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/publisher
dcterms:publisher rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/source
dcterms:source rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dcterms:title rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceUri
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://saref.etsi.org/saref4ehaw/consistsOf
s4ehaw:consistsOf rdf:type owl:ObjectProperty ;
Marc Girod-Genet
committed
rdfs:subPropertyOf saref:consistsOf ;
rdfs:domain s4ehaw:HealthDevice ;
rdfs:range s4ehaw:HealthDevice ;
rdfs:comment "An eHealth device can be a composite health device that consists of one or multiple sub-devices."@en ;
rdfs:label "consists of"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/contains
s4ehaw:contains rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Ban ;
rdfs:range s4ehaw:HealthDevice ;
rdfs:comment "A Body Area Network or BAN contains one or multiple health devices"@en ;
rdfs:label "contains"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/followsUser
s4ehaw:followsUser rdf:type owl:ObjectProperty ;
Marc Girod-Genet
committed
rdfs:domain s4ehaw:Helper ;
rdfs:range s4ehaw:User ;
rdfs:comment "A helper may follow one or multiple users that can in particular be patients."@en ;
rdfs:label "follows user"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/hasActivity
s4ehaw:hasActivity rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:HealthActor ;
rdfs:range s4ehaw:Activity ;
rdfs:comment "A health actor may have one or multiple activities."@en ;
rdfs:label "has activity"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/hasBanApplicationDomain
s4ehaw:hasBanApplicationDomain rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Ban ;
rdfs:range s4ehaw:BanApplicationDomain ;
rdfs:comment "The BAN application domain - healthcare, telemedicine, assisted living, sport training, pervasive computing, safety and emergency... -."@en ;
rdfs:label "has ban application domain"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/hasBanCommunicationFunction
s4ehaw:hasBanCommunicationFunction rdf:type owl:ObjectProperty ;
Marc Girod-Genet
committed
rdfs:range s4ehaw:BanCommunicationFunction ;
rdfs:comment "A BAN has a BAN communication function that is the type of communication carried out between BAN devices and BAN Hub."@en ;
rdfs:label "has BAN communication function"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/hasComputingPower
s4ehaw:hasComputingPower rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:DeviceType ;
rdfs:range s4ehaw:ComputingPower ;
rdfs:comment "A health device type has computing power describing the processing power or capabilities of the device (e.g. processor ID and manufacturer, duty cycle, available flash/RM memory, maximum flash/RAM memory...)."@en ;
rdfs:label "has computing power"@en .
### https://saref.etsi.org/saref4ehaw/hasDataConstraint
s4ehaw:hasDataConstraint rdf:type owl:ObjectProperty ;
rdfs:range s4ehaw:DataConstraint ;
rdfs:comment "Data has data constraints (validity, security...)."@en ;
rdfs:label "has data constraint"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/hasContact
s4ehaw:hasContact rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Ban ;
rdfs:range s4ehaw:Contact ;
rdfs:comment "A BAN has one or multiple contacts (e.g. the patient or user that is monitored through this BAN, the caregiver that is using this BAN for monitoring purposes)."@en ;
rdfs:label "has contact"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/hasData
s4ehaw:hasData rdf:type owl:ObjectProperty ;
rdfs:domain saref:Function ;
rdfs:range s4ehaw:Data ;
rdfs:comment "A function has one or many data, for example a tracking function shall include latitude, longitude and speed data."@en ;
rdfs:label "has data"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/hasDeviceType
s4ehaw:hasDeviceType rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:HealthDevice ;
rdfs:range s4ehaw:DeviceType ;
rdfs:comment "A health device has a device type describing the physical characteristics of the health device."@en ;
rdfs:label "has device type"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/hasHabit
rdfs:domain s4ehaw:User ;
rdfs:range s4ehaw:Habit ;
rdfs:comment "The habits of a user and a patient (as sub-class of user it also inherits habit), e.g. smoking or overeating."@en ;
rdfs:label "has habit"@en .
Marc Girod-Genet
committed
### https://saref.etsi.org/saref4ehaw/hasHub
s4ehaw:hasHub rdf:type owl:ObjectProperty ;
rdfs:domain s4ehaw:Ban ;
rdfs:range s4ehaw:BanHub ;
rdfs:comment "A Body Area Network or BAN elects one hub that mainly plays the role of both a data concentrator and a network gateway."@en ;
Loading full blame...