http://www.w3.org/2006/time#Duration
Duration of a temporal extent expressed as a number scaled by a temporal unit
Instances of time:Duration can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class time:Duration | |||
time:numericDuration | owl:DatatypeProperty | Value of a temporal extent expressed as a decimal number scaled by a temporal unit | 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:Duration a owl:Class ;
rdfs:label "duración de tiempo",
"Time duration"@en ;
rdfs:comment "Duration of a temporal extent expressed as a number scaled by a temporal unit"@en,
"Duración de una extensión temporal expresada como un número escalado por una unidad temporal."@es ;
rdfs:subClassOf [ a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty time:unitType ],
[ a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty time:numericDuration ],
time:TemporalDuration ;
skos:definition "Duration of a temporal extent expressed as a number scaled by a temporal unit"@en,
"Duración de una extensión temporal expresada como un número escalado por una unidad temporal."@es ;
skos:note "Alternative to time:DurationDescription to support description of a temporal duration other than using a calendar/clock system."@en,
"Alternativa a 'descripción de tiempo' para proporcionar descripción soporte a una duración temporal diferente a utilizar un sistema de calendario/reloj."@es .