http://www.w3.org/2006/time#DurationDescription
Description of temporal extent 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 each of the numeric properties is restricted to xsd:decimal
Instances of time:DurationDescription can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
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 |
@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:DurationDescription a owl:Class ;
rdfs:label "Duration description"@en,
"descripción de duración"@es ;
rdfs:comment "Description of temporal extent 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 each of the numeric properties is restricted to xsd:decimal"@en,
"Descripción de extensión temporal estructurada con valores separados para los distintos elementos de un sistema de horario-calendario. El sistema de referencia temporal se fija al calendario gregoriano, y el intervalo de cada una de las propiedades numéricas se restringe a xsd:decimal."@es ;
rdfs:subClassOf [ 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:decimal ;
owl:onProperty time:days ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:decimal ;
owl:onProperty time:hours ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:decimal ;
owl:onProperty time:minutes ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:decimal ;
owl:onProperty time:months ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:decimal ;
owl:onProperty time:seconds ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:decimal ;
owl:onProperty time:weeks ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:decimal ;
owl:onProperty time:years ],
time:GeneralDurationDescription ;
skos:definition "Description of temporal extent 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 each of the numeric properties is restricted to xsd:decimal"@en,
"Descripción de extensión temporal estructurada con valores separados para los distintos elementos de un sistema de horario-calendario. El sistema de referencia temporal se fija al calendario gregoriano, y el intervalo de cada una de las propiedades numéricas se restringe a xsd:decimal."@es ;
skos:note "In the Gregorian calendar the length of the month is not fixed. Therefore, a value like \"2.5 months\" cannot be exactly compared with a similar duration expressed in terms of weeks or days."@en,
"En el calendario gregoriano la longitud de los meses no es fija. Por lo tanto, un valor como \"2,5 meses\" no se puede comparar exactamente con una duración similar expresada en términos de semanas o días."@es .