@prefix rdf: . @prefix rdfs: . @prefix owl: . @prefix xsd: . @prefix dct: . @prefix skos: . @prefix time: . @prefix hutime: . a owl:Ontology ; dct:title "HuTime ontology vocabulary" ; rdfs:label "HuTime Ontology" ; dct:creator ; dct:creator ; dct:modified "2019-05-01"^^xsd:date ; dct:license ; dct:description "This is the RDF Schema for HuTime ontology vocabulary." ; skos:changeNote "2019-05-01 - related with owl-time. " . # Classes (for uncertain interval) hutime:UncertainTimeInterval a rdfs:Class; rdfs:label "Uncertain Time Interval" ; rdfs:subClassOf time:Interval ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasPossibleBeginning ; ] ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasReliableBeginning ; ] ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasReliableEnd ; ] ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasPossibleEnd ; ] ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasPossibleJdBeginning ; ] ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasReliableJdBeginning ; ] ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasReliableJdEnd ; ] ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasPossibleJdEnd ; ] ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasRangeOfBeginning ; ] ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:maxCardinality "1"^^xsd:nonNegativeInteger ; owl:onProperty hutime:hasRangeOfEnd ; ] ; rdfs:comment "The class of uncertain time interval." . time:ProperInterval rdfs:isDefinedBy ; rdfs:subClassOf hutime:UncertainTimeInterval ; rdfs:comment "Redefinition of the class in order to operate owl-time data under the logic of uncertain time interval." . # Classes (for calendar) hutime:JulianDate a rdfs:Class ; rdfs:label "Julian Date" ; rdfs:subClassOf time:TemporalPosition ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:hasValue ; owl:onProperty :hasTRS ; ] ; rdfs:comment "The class of date according to Julian Date." . hutime:Date owl:sameAs time:JulianDate ; rdfs:comment "!!!!Use hutime:JulianDate instead of this class. This class will be obsolete by 2019-06-30.!!!!" . hutime:DayOfWeek owl:sameAs time:DayOfWeek ; rdfs:comment "!!!!Use time:DayOfWeek instead of this class. This class will be obsolete by 2019-06-30.!!!!" . hutime:Calendar a rdfs:Class ; rdfs:label "Calendar" ; rdfs:subClassOf time:TRS ; rdfs:comment "The class of day of calendar identified by calendar Id." . hutime:CalendarDateTime a rdfs:Class ; rdfs:label "Calendar DateTime" ; rdfs:subClassOf time:ProperInterval ; rdfs:comment "The super class for any kinds of calendrical periods." . hutime:CalendarDate a rdfs:Class ; rdfs:label "Calendar Date" ; rdfs:subClassOf rdfs:CalendarDateTime ; rdfs:subClassOf time:Date ; rdfs:comment "The class of a date according to a calendar." . hutime:CalendarMonth a rdfs:Class ; rdfs:label "Calendar Month" ; rdfs:subClassOf rdfs:CalendarDateTime ; rdfs:subClassOf time:MonthOfYear ; rdfs:comment "The class of a month according to a calendar." . hutime:CalendarYear a rdfs:Class ; rdfs:label "Calendar Year" ; rdfs:subClassOf rdfs:CalendarDateTime ; rdfs:subClassOf time:Year ; rdfs:comment "The class of a year according to a calendar." . hutime:CalendarEra a rdfs:Class ; rdfs:label "Calendar Era" ; rdfs:subClassOf rdfs:CalendarDateTime ; rdfs:comment "The class of an era according to a calendar." . hutime:CalendarDuration a rdfs:Class ; rdfs:label "Calendar Duration" ; rdfs:comment "The class of duration (years-months-days) according to a calendar." . # Properties (for uncertain time interval) hutime:hasPossibleBeginning a owl:ObjectProperty ; rdfs:label "possible beginning" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range time:TemporalEntity ; rdfs:comment "Begnning point of a possible time interval in an uncerain time interval." . hutime:hasReliableBeginning a owl:ObjectProperty ; rdfs:label "reliable beginning" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range time:TemporalEntity ; rdfs:comment "Begnning point of a reliable time interval in an uncerain time interval." . hutime:hasReliableEnd a owl:ObjectProperty ; rdfs:label "reliable end" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range time:TemporalEntity ; rdfs:comment "End point of a reliable time interval in an uncerain time interval." . hutime:hasPossibleEnd a owl:ObjectProperty ; rdfs:label "possible end" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range time:TemporalEntity ; rdfs:comment "End point of a possible time interval in an uncerain time interval." . hutime:hasPossibleJdBeginning a owl:ObjectProperty ; rdfs:label "possible JD beginning" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range xsd:double ; rdfs:comment "Julian date value of begnning point of a possible time interval in an uncerain time interval." . hutime:hasReliableJdBeginning a owl:ObjectProperty ; rdfs:label "reliable JD beginning" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range xsd:double ; rdfs:comment "Julian date value of begnning point of a reliable time interval in an uncerain time interval." . hutime:hasReliableJdEnd a owl:ObjectProperty ; rdfs:label "reliable JD end" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range xsd:double ; rdfs:comment "Julian date value of end point of a reliable time interval in an uncerain time interval." . hutime:hasPossibleJdEnd a owl:ObjectProperty ; rdfs:label "possible JD end" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range xsd:double ; rdfs:comment "Julian date value of end point of a possible time interval in an uncerain time interval." . hutime:hasRangeOfBeginning a rdf:Property ; rdfs:label "beginning range" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Beginning range an uncerain time interval." . hutime:hasRangeOfEnd a rdf:Property ; rdfs:label "end range" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "End range an uncerain time interval." . # Properties (for calendar) hutime:begin a rdf:Property ; rdfs:label "begin" ; rdfs:domain time:TemporalEntity ; rdfs:range time:TemporalEntity ; rdfs:comment "Entity showing when the temporal entity begins. The beginning point of the temporal entity is used for the specification." . hutime:end a rdf:Property ; rdfs:label "end" ; rdfs:domain time:TemporalEntity ; rdfs:range time:TemporalEntity ; rdfs:comment "Entity showing when the temporal entity ends. The end point of the temporal entity is used for the specification" . hutime:jdBegin a rdf:Property ; rdfs:label "jdBegin" ; rdfs:domain time:TemporalEntity ; rdfs:range xsd:double ; rdfs:comment "Julian Date value when the temporal entity begins." . hutime:jdEnd a rdf:Property ; rdfs:label "jdEnd" ; rdfs:domain time:TemporalEntity ; rdfs:range xsd:double ; rdfs:comment "Julian Date value when the temporal entity ends." . hutime:previous a rdf:Property ; rdfs:label "previous" ; rdfs:domain time:TemporalEntity ; rdfs:range time:TemporalEntity ; rdfs:comment "The previous entity of the subject." . hutime:next a rdf:Property ; rdfs:label "next" ; rdfs:domain time:TemporalEntity ; rdfs:range time:TemporalEntity ; rdfs:comment "The next entity of the subject." . hutime:dayDuration a rdf:Property ; rdfs:label "dayDuration" ; rdfs:range xsd:nonNegativeInteger ; rdfs:comment "Number of days." . hutime:calendarDuration a rdf:Property ; rdfs:label "calendarDuration" ; rdfs:range hutime:CalendarDuration ; rdfs:comment "Duration expressed by numbers of years, months and days." . # Properties (for relationships between Calendar DateTime Resources) hutime:ofCalendar a rdf:Property ; rdfs:label "ofCalendar" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range hutime:Calendar ; rdfs:comment "Calendar of the subject." . hutime:ofEra a rdf:Property ; rdfs:label "ofEra" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range hutime:CalendarEra ; rdfs:comment "Era including the subject." . hutime:ofYear a rdf:Property ; rdfs:label "ofYear" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range hutime:CalendarYear ; rdfs:comment "Year including the subject." . hutime:ofMonth a rdf:Property ; rdfs:label "ofMonth" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range hutime:CalendarMonth ; rdfs:comment "Month including the subject." . # Properties (for DateTime Expression) hutime:eraName a rdf:Property ; rdfs:label "eraName" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range xsd:string ; rdfs:comment "Name of era including the subject." . hutime:yearOfEra a rdf:Property ; rdfs:label "yearOfEra" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range xsd:nonNegativeInteger ; rdfs:comment "Year number in the era including the subject." . hutime:monthOfYear a rdf:Property ; rdfs:label "monthOfYear" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range xsd:nonNegativeInteger ; rdfs:comment "Month number in the year including the subject." . hutime:monthName a rdf:Property ; rdfs:label "monthName" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range xsd:string ; rdfs:comment "Name of month including the subject." . hutime:dayOfMonth a rdf:Property ; rdfs:label "dayOfMonth" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range xsd:nonNegativeInteger ; rdfs:comment "Day number in the month including the subject." . hutime:dayOfYear a rdf:Property ; rdfs:label "dayOfYear" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range xsd:nonNegativeInteger ; rdfs:comment "Total day count form the begnning of the year." . # Properties (Others for Julian Date / Calendar DateTime Resources) hutime:isLeep a rdf:Property ; rdfs:label "isLeep" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range xsd:boolenan ; rdfs:comment "The subject calneder Year, month or date is leep or not." . hutime:iso8601 a rdf:Property ; rdfs:label "iso8601" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range xsd:date ; rdfs:comment "Datetime expression according to ISO 8601." . hutime:iso8601-2 a rdf:Property ; rdfs:label "iso8601-2" ; rdfs:domain hutime:CalendarDateTime ; rdfs:range xsd:string ; rdfs:comment "Datetime expression according to ISO 8601-2." . hutime:onDayOfWeek a rdf:Property ; rdfs:label "onDayOfWeek" ; rdfs:domain hutime:CalendarDate ; rdfs:range time:DayOfWeek ; rdfs:comment "Day of Week." . hutime:onJulianDate a rdf:Property ; rdfs:label "onJulianDate" ; rdfs:domain hutime:CalendarDate ; rdfs:range hutime:JulianDate ; rdfs:comment "Date of the subject Calendar Date." . hutime:onDate a rdf:Property ; owl:sameAs hutime:JulianDate ; rdfs:comment "!!!!Use hutime:onJulianDate instead of this property. This property will be obsolete by 2019-06-30.!!!!" . # Properties (for Calendar Resources) hutime:aliasCalendarOf a rdf:Property ; rdfs:label "alias calendar of" ; rdfs:domain hutime:Calendar ; rdfs:range hutime:Calendar ; rdfs:comment "Ailias of the subject calendar." . hutime:aliasOf a rdf:Property ; owl:sameAs hutime:aliasCalendarOf ; rdfs:comment "!!!!Use hutime:aliasCalendarOf instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:supportedBegin a rdf:Property ; rdfs:label "supported begin" ; rdfs:range time:temporalEntity ; rdfs:comment "Beginning date of the supported period in the subject calendar." . hutime:supportedEnd a rdf:Property ; rdfs:label "supported end" ; rdfs:range time:temporalEntity ; rdfs:comment "End date of the supported period in the subject calendar." . # Properties (Allen's time interval algebra) hutime:possibleBefore a rdf:Property ; rdfs:label "possible before" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Before relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleAfter a rdf:Property ; rdfs:label "possible after" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible After relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleMeets a rdf:Property ; rdfs:label "possible meets" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Meets relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleMetBy a rdf:Property ; rdfs:label "possible met-by" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Met-By relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleOverlaps a rdf:Property ; rdfs:label "possible overlaps" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Overlaps relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleOverlappedBy a rdf:Property ; rdfs:label "possible overlapped-by" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Overlapped-By relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleStarts a rdf:Property ; rdfs:label "possible starts" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Starts relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleStartedBy a rdf:Property ; rdfs:label "possible started-by" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Started-By relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleDuring a rdf:Property ; rdfs:label "possible during" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible During relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleContains a rdf:Property ; rdfs:label "possible contains" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Contains relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleFinishes a rdf:Property ; rdfs:label "possible finishes" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Finishes relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleFinishedBy a rdf:Property ; rdfs:label "possible finished-by" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Finished-By relation between uncertain time intervals according to Allen's interval algebra." . hutime:possibleEquals a rdf:Property ; rdfs:label "possible equals" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Possible Equals relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableBefore a rdf:Property ; rdfs:label "reliable before" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Before relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableAfter a rdf:Property ; rdfs:label "reliable after" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable After relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableMeets a rdf:Property ; rdfs:label "reliable meets" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Meets relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableMetBy a rdf:Property ; rdfs:label "reliable met-by" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Met-By relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableOverlaps a rdf:Property ; rdfs:label "reliable overlaps" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Overlaps relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableOverlappedBy a rdf:Property ; rdfs:label "reliable overlapped-by" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Overlapped-By relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableStarts a rdf:Property ; rdfs:label "reliable starts" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Starts relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableStartedBy a rdf:Property ; rdfs:label "reliable started-by" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Started-By relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableDuring a rdf:Property ; rdfs:label "reliable during" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable During relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableContains a rdf:Property ; rdfs:label "reliable contains" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Contains relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableFinishes a rdf:Property ; rdfs:label "reliable finishes" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Finishes relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableFinishedBy a rdf:Property ; rdfs:label "reliable finished-by" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Finished-By relation between uncertain time intervals according to Allen's interval algebra." . hutime:reliableEquals a rdf:Property ; rdfs:label "reliable equals" ; rdfs:domain hutime:UncertainTimeInterval ; rdfs:range hutime:UncertainTimeInterval ; rdfs:comment "Reliable Equals relation between uncertain time intervals according to Allen's interval algebra." . time:intervalBefore a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableBefore ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalAfter a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableAfter ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalMeets a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableMeets ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalMetBy a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableMetBy ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalOverlaps a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableOverlaps ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalOverlappedBy a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableOverlappedBy ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalStarts a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableStarts ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalStartedBy a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableStartedBy ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalDuring a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableDuring ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalContains a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableContains ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalFinishes a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableFinishes ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalFinishedBy a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableFinishedBy ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . time:intervalEquals a rdf:Property ; rdfs:isDefinedBy ; rdfs:subPropertyOf hutime:ReliableEquals ; rdfs:comment "Redefinition of the property in order to operate owl-time data under the logic of uncertain time interval." . hutime:tBefore a rdf:Property ; owl:sameAs time:intervalBefore ; rdfs:comment "!!!!Use time:intervalBefore instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tAfter a rdf:Property ; owl:sameAs time:intervalAfter ; rdfs:comment "!!!!Use time:intervalAfter instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tMeets a rdf:Property ; owl:sameAs time:intervalMeets ; rdfs:comment "!!!!Use time:intervalMeets instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tMetBy a rdf:Property ; owl:sameAs time:intervalMetBy ; rdfs:comment "!!!!Use time:intervalMetBy instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tOverlaps a rdf:Property ; owl:sameAs time:intervalOverlaps ; rdfs:comment "!!!!Use time:intervalOverlaps instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tOverlappedBy a rdf:Property ; owl:sameAs time:intervalOverlappedBy ; rdfs:comment "!!!!Use time:intervalOverlappedBy instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tStarts a rdf:Property ; owl:sameAs time:intervalStarts ; rdfs:comment "!!!!Use time:intervalStarts instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tStartedBy a rdf:Property ; owl:sameAs time:intervalStartedBy ; rdfs:comment "!!!!Use time:intervalStartedBy instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tDuring a rdf:Property ; owl:sameAs time:intervalDuring ; rdfs:comment "!!!!Use time:intervalDuring instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tContains a rdf:Property ; owl:sameAs time:intervalContains ; rdfs:comment "!!!!Use time:intervalContains instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tFinishes a rdf:Property ; owl:sameAs time:intervalFinishes ; rdfs:comment "!!!!Use time:intervalFinishes instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tFinishedBy a rdf:Property ; owl:sameAs time:intervalFinishedBy ; rdfs:comment "!!!!Use time:intervalFinishedBy instead of this property. This property will be obsolete by 2019-06-30.!!!!" . hutime:tEquals a rdf:Property ; owl:sameAs time:intervalEquals ; rdfs:comment "!!!!Use time:intervalEquals instead of this property. This property will be obsolete by 2019-06-30.!!!!" .