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

replace bancommunicationtype with communication function. closes #16

parent 712f75d5
Loading
Loading
Loading
Loading
Loading
+25 −43
Original line number Diff line number Diff line
@@ -121,14 +121,6 @@ s4ehaw:hasBanApplicationDomain rdf:type owl:ObjectProperty ;
                               rdfs:label "has BAN application domain"@en .


###  https://saref.etsi.org/saref4ehaw/hasBanCommunicationType
s4ehaw:hasBanCommunicationType rdf:type owl:ObjectProperty ;
                                rdfs:domain s4ehaw:Ban ;
                                rdfs:range s4ehaw:BanCommunicationType ;
                                rdfs:comment "A BAN has a BAN communication type that is the type of communication carried out between BAN devices and BAN Hub."@en ;
                                rdfs:label "has BAN communication type"@en .


###  https://saref.etsi.org/saref4ehaw/hasDataConstraint
s4ehaw:hasDataConstraint rdf:type owl:ObjectProperty ;
                     rdfs:domain s4ehaw:Data ;
@@ -510,14 +502,6 @@ s4ehaw:sampleTime rdf:type owl:DatatypeProperty ;
                  rdfs:label "sample time"@en .


###  https://saref.etsi.org/saref4ehaw/sendingFrequency
s4ehaw:sendingFrequency rdf:type owl:DatatypeProperty ;
                        rdfs:domain s4ehaw:PeriodicBanCommunicationType ;
                        rdfs:range xsd:float ;
                        rdfs:comment "Defines the sending frequency (in ms), at an health device level, in case of pariodic BAN communication type."@en ;
                        rdfs:label "sending frequency"@en .


###  https://saref.etsi.org/saref4ehaw/serialNb
s4ehaw:serialNb rdf:type owl:DatatypeProperty ;
                rdfs:domain s4ehaw:HealthDevice ;
@@ -603,12 +587,6 @@ s4ehaw:CommunicationProtocol rdf:type owl:Class ;
                             rdfs:label "Communication protocol"@en .


###  https://saref.etsi.org/saref4ehaw/BanCommunicationType
s4ehaw:BanCommunicationType rdf:type owl:Class ;
                            rdfs:comment "The BAN communication function type, i.e. periodic, event driven or on request."@en ;
                            rdfs:label "BAN Communication type"@en .


###  https://saref.etsi.org/saref4ehaw/DataConstraint
s4ehaw:DataConstraint rdf:type owl:Class ;
                  rdfs:comment "The Data constraints, e.g. validity, legal..."@en ;
@@ -641,13 +619,6 @@ s4ehaw:DeviceCharacteristic rdf:type owl:Class ;
                  rdfs:label "Device characteristic"@en .


###  https://saref.etsi.org/saref4ehaw/EventDrivenBanCommunicationType
s4ehaw:EventDrivenBanCommunicationType rdf:type owl:Class ;
                                       rdfs:subClassOf s4ehaw:BanCommunicationType ;
                                       rdfs:comment "BAN communication function way of working of the type event driven."@en ;
                                       rdfs:label "Event driven BAN communication type"@en .


###  https://saref.etsi.org/saref4ehaw/FunctionalDevice
s4ehaw:FunctionalDevice rdf:type owl:Class ;
                        rdfs:subClassOf saref:Device ;
@@ -744,13 +715,6 @@ s4ehaw:NocturnalActivity rdf:type owl:Class ;
                         rdfs:label "Nocturnal activity"@en .


###  https://saref.etsi.org/saref4ehaw/OnRequestBanCommunicationType
s4ehaw:OnRequestBanCommunicationType rdf:type owl:Class ;
                                     rdfs:subClassOf s4ehaw:BanCommunicationType ;
                                     rdfs:comment "BAN communication function way of working of the type on request."@en ;
                                     rdfs:label "On request BAN communication type"@en .


###  https://saref.etsi.org/saref4ehaw/OperatingConstraint
s4ehaw:OperatingConstraint rdf:type owl:Class ;
                           rdfs:comment "An empty container for describing the operating constraints of a device, e.g. recommended humidity and temperature range..."@en ;
@@ -764,13 +728,6 @@ s4ehaw:Patient rdf:type owl:Class ;
               rdfs:label "Patient"@en .


###  https://saref.etsi.org/saref4ehaw/PeriodicBanCommunicationType
s4ehaw:PeriodicBanCommunicationType rdf:type owl:Class ;
                                    rdfs:subClassOf s4ehaw:BanCommunicationType ;
                                    rdfs:comment "BAN communication function way of working of the type periodic."@en ;
                                    rdfs:label "Periodic BAN communication type"@en .


###  https://saref.etsi.org/saref4ehaw/ReminderCommand
s4ehaw:ReminderCommand rdf:type owl:Class ;
                       rdfs:subClassOf saref:NotifyCommand ;
@@ -1192,4 +1149,29 @@ s4ehaw:Exercising rdf:type saref:StateValue ;
  rdfs:label "Exercising"@en .



###  https://saref.etsi.org/saref4ehaw/CommunicationFunction
s4ehaw:CommunicationFunction rdf:type saref:Function ;
  rdfs:comment "A device may have a communication function."@en ;
  rdfs:label "Communication Function"@en .

s4ehaw:PeriodicCommunicationFunction rdf:type saref:Function ;
  skos:broader s4ehaw:CommunicationFunction ;
  rdfs:comment "Function to communicate periodically to report observations and receive actuations."@en ;
  rdfs:label "Periodic Communication Function"@en .

s4ehaw:EventDrivenCommunicationFunction rdf:type saref:Function ;
  skos:broader s4ehaw:CommunicationFunction ;
  rdfs:comment "Function to communicate upon an event to report observations and receive actuations."@en ;
  rdfs:label "Event driven Communication Function"@en .

s4ehaw:OnRequestCommunicationFunction rdf:type saref:Function ;
  skos:broader s4ehaw:CommunicationFunction ;
  rdfs:comment "Function to communicate on request to report observations and receive actuations."@en ;
  rdfs:label "On request Communication Function"@en .

s4ehaw:SendingFrequency rdf:type saref:Property ;
  rdfs:comment "The sending frequency of a device with a periodic communication function."@en ;
  rdfs:label "Sending Frequency"@en .

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