http://www.w3.org/2006/time#DateTimeDescription
Description of date and time structured with separate values for the various elements of a calendar-clock system. The temporal reference system is fixed to Gregorian Calendar, and the range of year, month, day properties restricted to corresponding XML Schema types xsd:gYear, xsd:gMonth and xsd:gDay, respectively.
Instances of time:DateTimeDescription 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:DateTimeDescription a owl:Class ;
rdfs:label "Date-Time description"@en,
"descripción de fecha-tiempo"@es ;
rdfs:comment "Description of date and time structured with separate values for the various elements of a calendar-clock system. The temporal reference system is fixed to Gregorian Calendar, and the range of year, month, day properties restricted to corresponding XML Schema types xsd:gYear, xsd:gMonth and xsd:gDay, respectively."@en,
"Descripción de fecha y tiempo estructurada con valores separados para los diferentes elementos de un sistema calendario-reloj. El sistema de referencia temporal está fijado al calendario gregoriano, y el rango de las propiedades año, mes, día restringidas a los correspondientes tipos del XML Schema xsd:gYear, xsd:gMonth y xsd:gDay respectivamente."@es ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom xsd:gYear ;
owl:onProperty time:year ],
[ a owl:Restriction ;
owl:hasValue <http://www.opengis.net/def/uom/ISO-8601/0/Gregorian> ;
owl:onProperty time:hasTRS ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:gDay ;
owl:onProperty time:day ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:gMonth ;
owl:onProperty time:month ],
time:GeneralDateTimeDescription ;
skos:definition "Description of date and time structured with separate values for the various elements of a calendar-clock system. The temporal reference system is fixed to Gregorian Calendar, and the range of year, month, day properties restricted to corresponding XML Schema types xsd:gYear, xsd:gMonth and xsd:gDay, respectively."@en,
"Descripción de fecha y tiempo estructurada con valores separados para los diferentes elementos de un sistema calendario-reloj. El sistema de referencia temporal está fijado al calendario gregoriano, y el rango de las propiedades año, mes, día restringidas a los correspondientes tipos del XML Schema xsd:gYear, xsd:gMonth y xsd:gDay respectivamente."@es .