time:January leaf node


URI

http://www.w3.org/2006/time#January

Label

January

Superclasses (1)

Usage

Instances of time:January can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class time:DateTimeDescription
time:day owl:DatatypeProperty xsd:gDay
time:dayOfYear owl:DatatypeProperty xsd:nonNegativeInteger
time:hour owl:DatatypeProperty xsd:nonNegativeInteger
time:minute owl:DatatypeProperty xsd:nonNegativeInteger
time:month owl:DatatypeProperty xsd:gMonth
time:second owl:DatatypeProperty xsd:decimal
time:week owl:DatatypeProperty xsd:nonNegativeInteger
time:year owl:DatatypeProperty xsd:gYear
time:dayOfWeek owl:ObjectProperty time:DayOfWeek
time:timeZone owl:ObjectProperty tzont:TimeZone
time:unitType owl:ObjectProperty time:TemporalUnit
From class owl:Thing
time:after owl:ObjectProperty owl:Thing
time:intervalAfter owl:ObjectProperty owl:Thing
time:intervalContains owl:ObjectProperty owl:Thing
time:intervalFinishedBy owl:ObjectProperty owl:Thing
time:intervalMetBy owl:ObjectProperty owl:Thing
time:intervalOverlappedBy owl:ObjectProperty owl:Thing
time:intervalStartedBy owl:ObjectProperty owl:Thing

Implementation

@prefix : <http://www.w3.org/2006/time#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:January a owl:Class ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:hasValue "--01"^^xsd:gMonth ;
            owl:onProperty :month ],
        [ a owl:Restriction ;
            owl:hasValue :unitMonth ;
            owl:onProperty :unitType ],
        :DateTimeDescription .