Commit 8f5e5391 authored by Raul Garcia-Castro's avatar Raul Garcia-Castro
Browse files

Changed time:Duration to time:TemporalDuration, which is more appropriate...

Changed time:Duration to time:TemporalDuration, which is more appropriate since it allows different representations of the duration.
parent 72ebe993
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ s4watr:forWeekDay rdf:type owl:ObjectProperty ;
###  https://saref.etsi.org/saref4watr#hasBillingPeriod
s4watr:hasBillingPeriod rdf:type owl:ObjectProperty ;
                  rdfs:domain s4watr:Tariff ;
                  rdfs:range time:Duration ;
                  rdfs:range time:TemporalDuration ;
                  rdfs:comment "The billing period of a tariff."@en ;
                  rdfs:label "has billing period"@en .

@@ -180,7 +180,7 @@ s4watr:hasBillingPeriod rdf:type owl:ObjectProperty ;
###  https://saref.etsi.org/saref4watr#hasDuration
s4watr:hasDuration rdf:type owl:ObjectProperty ;
             rdfs:domain s4watr:Tariff ;
             rdfs:range time:Duration ;
             rdfs:range time:TemporalDuration ;
             rdfs:comment "The duration of a tariff."@en ;
             rdfs:label "has duration"@en .

@@ -188,7 +188,7 @@ s4watr:hasDuration rdf:type owl:ObjectProperty ;
###  https://saref.etsi.org/saref4watr#hasPeriod
s4watr:hasPeriod rdf:type owl:ObjectProperty ;
           rdfs:domain s4watr:Tariff ;
           rdfs:range time:Duration ;
           rdfs:range time:TemporalDuration ;
           rdfs:comment "The period of a tariff."@en ;
           rdfs:label "has period"@en .

@@ -457,13 +457,6 @@ time:DayOfWeek rdf:type owl:Class ;
               rdfs:label "Day of week"@en .


###  http://www.w3.org/2006/time#Duration
time:Duration rdf:type owl:Class ;
              rdfs:comment "Duration of a temporal extent expressed as a decimal number scaled by a temporal unit."@en ;
              rdfs:isDefinedBy <http://www.w3.org/2006/time#> ;
              rdfs:label "Duration"@en .


###  http://www.w3.org/2006/time#Instant
time:Instant rdf:type owl:Class ;
             rdfs:subClassOf time:TemporalEntity ;
@@ -480,6 +473,13 @@ time:Interval rdf:type owl:Class ;
              rdfs:label "Interval"@en .


###  http://www.w3.org/2006/time#TemporalDuration
time:TemporalDuration rdf:type owl:Class ;
                      rdfs:comment "Time extent; duration of a time interval separate from its particular start position"@en ;
                      rdfs:isDefinedBy <http://www.w3.org/2006/time#> ;
                      rdfs:label "Temporal duration"@en .


###  http://www.w3.org/2006/time#TemporalEntity
time:TemporalEntity rdf:type owl:Class ;
                    rdfs:comment "A temporal interval or instant."@en ;