Unverified Commit f5691773 authored by Maxime Lefrançois's avatar Maxime Lefrançois
Browse files

closes #31

parent 29fde20d
Loading
Loading
Loading
Loading
Loading
+35 −53
Original line number Diff line number Diff line
@@ -187,14 +187,6 @@ s4ehaw:isAttachedTo rdf:type owl:ObjectProperty ;
                    rdfs:label "is attached to"@en .


###  https://saref.etsi.org/saref4ehaw/uom
s4ehaw:uom rdf:type owl:ObjectProperty ;
           rdfs:domain s4ehaw:MeasurementFunction ;
           rdfs:range saref:UnitOfMeasure ;
           rdfs:comment "Defines the unit of measure of a measurement function."@en ;
           rdfs:label "unit of measurement"@en .


###  https://saref.etsi.org/saref4ehaw/usesBan
s4ehaw:usesBan rdf:type owl:ObjectProperty ;
               rdfs:domain s4ehaw:HealthActor ;
@@ -255,14 +247,6 @@ s4ehaw:dob rdf:type owl:DatatypeProperty ;
           rdfs:label "date of birth"@en .


###  https://saref.etsi.org/saref4ehaw/faultTolerence
s4ehaw:faultTolerence rdf:type owl:DatatypeProperty ;
                      rdfs:domain s4ehaw:MeasurementFunction ;
                      rdfs:range xsd:double ;
                      rdfs:comment "Defines the error rate tolerated for a measurement function."@en ;
                      rdfs:label "fault tolerence"@en .


###  https://saref.etsi.org/saref4ehaw/firstName
s4ehaw:firstName rdf:type owl:DatatypeProperty ;
                 rdfs:domain s4ehaw:HealthActor ;
@@ -303,14 +287,6 @@ s4ehaw:lastName rdf:type owl:DatatypeProperty ;
                rdfs:label "last name"@en .


###  https://saref.etsi.org/saref4ehaw/latency
s4ehaw:latency rdf:type owl:DatatypeProperty ;
               rdfs:domain s4ehaw:MeasurementFunction ;
               rdfs:range xsd:float ;
               rdfs:comment "The latency is the time interval between the stimulation and response of a measurement function (in ms)."@en ;
               rdfs:label "latency"@en .


###  https://saref.etsi.org/saref4ehaw/maximumValue
s4ehaw:maximumValue rdf:type owl:DatatypeProperty ;
                    rdfs:domain s4ehaw:ValidityConstraint ;
@@ -343,14 +319,6 @@ s4ehaw:remainingBatteryLevel rdf:type owl:DatatypeProperty ;
                             rdfs:label "remaining battery level"@en .


###  https://saref.etsi.org/saref4ehaw/sampleTime
s4ehaw:sampleTime rdf:type owl:DatatypeProperty ;
                  rdfs:domain s4ehaw:MeasurementFunction ;
                  rdfs:range xsd:int ;
                  rdfs:comment "The sample time of a measurement function (a discrete integer)."@en ;
                  rdfs:label "sample time"@en .


###  https://saref.etsi.org/saref4ehaw/serialNb
s4ehaw:serialNb rdf:type owl:DatatypeProperty ;
                rdfs:domain s4ehaw:HealthDevice ;
@@ -377,13 +345,6 @@ s4ehaw:Activity rdf:type owl:Class ;
                rdfs:label "Activity"@en .


###  https://saref.etsi.org/saref4ehaw/AlarmCommand
s4ehaw:AlarmCommand rdf:type owl:Class ;
                    rdfs:subClassOf saref:Command ;
		    rdfs:comment "A command corresponding to alarm sending."@en ;
                    rdfs:label "Alarm command"@en .


###  https://saref.etsi.org/saref4ehaw/Ban
s4ehaw:Ban rdf:type owl:Class ;
  rdfs:subClassOf s4syst:Connection ,
@@ -516,13 +477,6 @@ s4ehaw:ObservationCollectionExecution rdf:type owl:Class ;
                                    rdfs:label "Observation Collection Execution"@en .


###  https://saref.etsi.org/saref4ehaw/MeasurementFunction
s4ehaw:MeasurementFunction rdf:type owl:Class ;
                           rdfs:subClassOf saref:Function ;
                           rdfs:comment "The functionality necessary to accomplish the measurement task for which a measurement-related health Device (e.g. Sensor, Wearable, ECG Device...) is designed for, e.g. a heart rate measurement function."@en ;
                           rdfs:label "Measurement function"@en .


###  https://saref.etsi.org/saref4ehaw/NocturnalActivity
s4ehaw:NocturnalActivity rdf:type owl:Class ;
                         rdfs:subClassOf s4ehaw:Activity ;
@@ -543,13 +497,6 @@ s4ehaw:Patient rdf:type owl:Class ;
               rdfs:label "Patient"@en .


###  https://saref.etsi.org/saref4ehaw/ReminderCommand
s4ehaw:ReminderCommand rdf:type owl:Class ;
                       rdfs:subClassOf saref:NotifyCommand ;
                       rdfs:comment "Command used for sending reminder notifications to health actors, e.g. patients, users or Caregivers."@en ;
                       rdfs:label "Reminder command"@en .


###  https://saref.etsi.org/saref4ehaw/ResponsibleParty
s4ehaw:ResponsibleParty rdf:type owl:Class ;
                        rdfs:subClassOf s4ehaw:HealthActor ;
@@ -1053,4 +1000,39 @@ s4ehaw:hasEffect rdf:type owl:ObjectProperty ;
  rdfs:comment "Links a command or operation to the effect of invoking it. Can be an alert, nothing, an activation of another process..."@en ;
  rdfs:label "has effect"@en .


###  https://saref.etsi.org/saref4ehaw/AlarmCommand
s4ehaw:Alarm rdf:type saref:Function ;
  rdfs:comment "Function for issuing and managing alarms."@en ;
  rdfs:label "Alarm"@en ;
  saref:hasMandatoryCommand s4ehaw:Alarm_Trigger , s4ehaw:Alarm_Reset ;
  saref:hasOptionalCommand s4ehaw:Alarm_Get , s4ehaw:Alarm_ResetLog .

s4ehaw:Alarm_Trigger rdf:type saref:Command ;
  rdfs:label "Alarm Trigger"@en ;
  rdfs:comment "Command used for triggering an alarm."@en .

s4ehaw:Alarm_Reset rdf:type saref:Command ;
  rdfs:label "Alarm Reset"@en ;
  rdfs:comment "Command used for resetting an alarm."@en .

s4ehaw:Alarm_Get rdf:type saref:Command ;
  rdfs:label "Alarm Get"@en ;
  rdfs:comment "Command used for getting the alarm status."@en .

s4ehaw:Alarm_ResetLog rdf:type saref:Command ;
  rdfs:label "Alarm Reset Log"@en ;
  rdfs:comment "Command used for resetting the alarm log."@en .


###  https://saref.etsi.org/saref4ehaw/ReminderCommand
s4ehaw:Reminder rdf:type saref:Function ;
  rdfs:label "Reminder"@en ;
  rdfs:comment "Function for sending reminder notifications."@en ;
  saref:hasMandatoryCommand s4ehaw:Reminder_Send .

s4ehaw:Reminder_Send rdf:type saref:Command ;
  rdfs:label "Reminder Send"@en ;
  rdfs:comment "Command used for sending a reminder."@en .

###  Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi