http://www.w3.org/2006/time#MonthOfYear
The month of the year
Instances of time:MonthOfYear can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class time:GeneralDateTimeDescription | |||
time:day | owl:DatatypeProperty | Day position in a calendar-clock system. The range of this property is not specified, so can be replaced by any specific representation of a calendar day from any calendar. | owl:Thing |
time:dayOfYear | owl:DatatypeProperty | The number of the day within the year | xsd:nonNegativeInteger |
time:hour | owl:DatatypeProperty | Hour position in a calendar-clock system. | xsd:nonNegativeInteger |
time:minute | owl:DatatypeProperty | Minute position in a calendar-clock system. | xsd:nonNegativeInteger |
time:month | owl:DatatypeProperty | Month position in a calendar-clock system. The range of this property is not specified, so can be replaced by any specific representation of a calendar month from any calendar. | owl:Thing |
time:second | owl:DatatypeProperty | Second position in a calendar-clock system. | xsd:decimal |
time:week | owl:DatatypeProperty | Week number within the year. | xsd:nonNegativeInteger |
time:year | owl:DatatypeProperty | Year position in a calendar-clock system. The range of this property is not specified, so can be replaced by any specific representation of a calendar year from any calendar. | owl:Thing |
time:dayOfWeek | owl:ObjectProperty | The day of week, whose value is a member of the class time:DayOfWeek | time:DayOfWeek |
time:monthOfYear | owl:ObjectProperty | The month of the year, whose value is a member of the class time:MonthOfYear | time:MonthOfYear |
time:timeZone | owl:ObjectProperty | The time zone for clock elements in the temporal position | time:TimeZone |
From class owl:Thing | |||
dcterms:contributor | owl:AnnotationProperty | owl:Thing | |
dcterms:created | owl:AnnotationProperty | owl:Thing | |
dcterms:creator | owl:AnnotationProperty | owl:Thing | |
dcterms:isVersionOf | owl:AnnotationProperty | owl:Thing | |
dcterms:license | owl:AnnotationProperty | owl:Thing | |
dcterms:modified | owl:AnnotationProperty | owl:Thing | |
dcterms:rights | owl:AnnotationProperty | owl:Thing | |
skos:changeNote | owl:AnnotationProperty | owl:Thing | |
skos:definition | owl:AnnotationProperty | owl:Thing | |
skos:editorialNote | owl:AnnotationProperty | owl:Thing | |
skos:historyNote | owl:AnnotationProperty | owl:Thing | |
skos:note | owl:AnnotationProperty | owl:Thing | |
skos:prefLabel | owl:AnnotationProperty | owl:Thing | |
skos:scopeNote | owl:AnnotationProperty | owl:Thing | |
time:hasDuration | owl:ObjectProperty | Duration of a temporal entity, expressed as a scaled value or nominal value | time:Duration |
time:hasDurationDescription | owl:ObjectProperty | Duration of a temporal entity, expressed using a structured description | time:GeneralDurationDescription |
time:hasTime | owl:ObjectProperty | Supports the association of a temporal entity (instant or interval) to any thing | time:TemporalEntity |
xsd:pattern | owl:AnnotationProperty | owl:Thing |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
time:MonthOfYear a owl:Class ;
rdfs:label "Month of year"@en,
"mes del año"@es ;
rdfs:comment "The month of the year"@en,
"El mes del año."@es ;
rdfs:subClassOf [ a owl:Restriction ;
owl:hasValue time:unitMonth ;
owl:onProperty time:unitType ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty time:day ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty time:hour ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty time:minute ],
[ a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty time:month ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty time:second ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty time:week ],
[ a owl:Restriction ;
owl:cardinality "0"^^xsd:nonNegativeInteger ;
owl:onProperty time:year ],
time:DateTimeDescription ;
skos:definition "The month of the year"@en,
"El mes del año."@es ;
skos:editorialNote "Feature at risk - added in 2017 revision, and not yet widely used. "@en,
"Característica en riesgo - añadida en la revisión de 2017, y no utilizada todavía de forma amplia."@es ;
skos:note "Membership of the class :MonthOfYear is open, to allow for alternative annual calendars and different month names."@en,
"La pertenencia a la clase 'mes del año' está abierta, a permitir calendarios anuales alternativos y diferentes nombres de meses."@es .