http://www.w3.org/2006/time#Year
Instances of time:Year can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class time:DurationDescription | |||
time:days | owl:DatatypeProperty | xsd:decimal | |
time:hours | owl:DatatypeProperty | xsd:decimal | |
time:minutes | owl:DatatypeProperty | xsd:decimal | |
time:months | owl:DatatypeProperty | xsd:decimal | |
time:seconds | owl:DatatypeProperty | xsd:decimal | |
time:weeks | owl:DatatypeProperty | xsd:decimal | |
time:years | owl:DatatypeProperty | xsd:decimal | |
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 |
@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#> .
:Year a owl:Class ;
rdfs:subClassOf [ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty :hours ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty :days ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty :weeks ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty :months ],
[ a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty :years ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty :minutes ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty :seconds ],
:DurationDescription .