time:numericDuration leaf node


URI

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

Label

Numeric value of temporal duration

Description

Value of a temporal extent expressed as a decimal number scaled by a temporal unit

Usage

DOMAINPROPERTYRANGE
time:Duration time:numericDuration xsd:decimal

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:numericDuration a owl:DatatypeProperty ;
    rdfs:label "Numeric value of temporal duration"@en,
        "valor numérico de duración temporal"@es ;
    rdfs:comment "Value of a temporal extent expressed as a decimal number scaled by a temporal unit"@en,
        "Valor de una extensión temporal expresada como un número decimal escalado por una unidad de tiempo."@es ;
    rdfs:domain time:Duration ;
    rdfs:range xsd:decimal ;
    skos:definition "Value of a temporal extent expressed as a decimal number scaled by a temporal unit"@en,
        "Valor de una extensión temporal expresada como un número decimal escalado por una unidad de tiempo."@es .