time:GeneralDateTimeDescription


URI

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

Label

Generalized date-time description

Description

Description of date and time structured with separate values for the various elements of a calendar-clock system

Superclasses (1)

Usage

Instances of time:GeneralDateTimeDescription can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
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

Implementation

@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:GeneralDateTimeDescription a owl:Class ;
    rdfs:label "Generalized date-time description"@en,
        "descripción de fecha-hora generalizada"@es ;
    rdfs:comment "Description of date and time structured with separate values for the various elements of a calendar-clock system"@en,
        "Descripción de fecha y hora estructurada con valores separados para los distintos elementos de un sistema calendario-reloj."@es ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:unitType ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:dayOfWeek ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:monthOfYear ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:timeZone ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:day ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:dayOfYear ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:hour ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:minute ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:month ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:second ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:week ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:year ],
        time:TemporalPosition ;
    skos:definition "Descripción de fecha y hora estructurada con valores separados para los distintos elementos de un sistema calendario-reloj.",
        "Description of date and time structured with separate values for the various elements of a calendar-clock system"@en ;
    skos:note "Some combinations of properties are redundant - for example, within a specified :year if :dayOfYear is provided then :day and :month can be computed, and vice versa. Individual values should be consistent with each other and the calendar, indicated through the value of the :hasTRS property.",
        "Algunas combinaciones de propiedades son redundantes - por ejemplo, dentro de un 'año' especificado si se proporciona 'día del año' entonces 'día' y 'mes' se pueden computar, y viceversa. Los valores individuales deberían ser consistentes entre ellos y con el calendario, indicado a través del valor de la propiedad 'tiene TRS'."@es .