time:GeneralDurationDescription


URI

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

Label

Generalized duration description

Description

Description of temporal extent structured with separate values for the various elements of a calendar-clock system.

Superclasses (1)

Usage

Instances of time:GeneralDurationDescription can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class time:GeneralDurationDescription
time:days owl:DatatypeProperty length of, or element of the length of, a temporal extent expressed in days xsd:decimal
time:hours owl:DatatypeProperty length of, or element of the length of, a temporal extent expressed in hours xsd:decimal
time:minutes owl:DatatypeProperty length, or element of, a temporal extent expressed in minutes xsd:decimal
time:months owl:DatatypeProperty length of, or element of the length of, a temporal extent expressed in months xsd:decimal
time:seconds owl:DatatypeProperty length of, or element of the length of, a temporal extent expressed in seconds xsd:decimal
time:weeks owl:DatatypeProperty length of, or element of the length of, a temporal extent expressed in weeks xsd:decimal
time:years owl:DatatypeProperty length of, or element of the length of, a temporal extent expressed in years xsd:decimal
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:GeneralDurationDescription a owl:Class ;
    rdfs:label "Generalized duration description"@en,
        "descripción de duración generalizada"@es ;
    rdfs:comment "Description of temporal extent structured with separate values for the various elements of a calendar-clock system."@en,
        "Descripción de extensión temporal estructurada con valores separados para los distintos elementos de un sistema de horario-calendario."@es ;
    rdfs:subClassOf [ a owl:Restriction ;
            owl:cardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:hasTRS ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:days ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:hours ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:minutes ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:months ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:seconds ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:weeks ],
        [ a owl:Restriction ;
            owl:maxCardinality "1"^^xsd:nonNegativeInteger ;
            owl:onProperty time:years ],
        time:TemporalDuration ;
    skos:definition "Description of temporal extent structured with separate values for the various elements of a calendar-clock system."@en,
        "Descripción de extensión temporal estructurada con valores separados para los distintos elementos de un sistema de horario-calendario."@es ;
    skos:note "The extent of a time duration expressed as a GeneralDurationDescription depends on the Temporal Reference System. In some calendars the length of the week or month is not constant within the year. Therefore, a value like \"2.5 months\" may not necessarily be exactly compared with a similar duration expressed in terms of weeks or days. When non-earth-based calendars are considered even more care must be taken in comparing durations."@en,
        "La extensión de una duración de tiempo expresada como una 'descripción de duración general' depende del Sistema de Referencia Temporal. En algunos calendarios la longitud de la semana o del mes no es constante a lo largo del año. Por tanto, un valor como \"25 meses\" puede no ser necesariamente ser comparado con un duración similar expresada en términos de semanas o días. Cuando se consideran calendarios que no están basados en el movimiento de la Tierra, se deben tomar incluso más precauciones en la comparación de duraciones."@es .