time:hasXSDDuration leaf node


URI

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

Label

has XSD duration

Description

Extent of a temporal entity, expressed using xsd:duration

Usage

DOMAINPROPERTYRANGE
time:TemporalEntity time:hasXSDDuration xsd:duration

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:hasXSDDuration a owl:DatatypeProperty ;
    rdfs:label "has XSD duration"@en,
        "tiene duración XSD"@es ;
    rdfs:comment "Extent of a temporal entity, expressed using xsd:duration"@en,
        "Extensión de una entidad temporal, expresada utilizando xsd:duration."@es ;
    rdfs:domain time:TemporalEntity ;
    rdfs:range xsd:duration ;
    skos:definition "Extent of a temporal entity, expressed using xsd:duration"@en,
        "Extensión de una entidad temporal, expresada utilizando xsd:duration."@es ;
    skos:editorialNote "Feature at risk - added in 2017 revision, and not yet widely used. "@en,
        "Característica arriesgada - añadida en la revisión de 2017, y todavía no ampliamente utilizada."@es .