time:hasEnd leaf node


URI

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

Label

has end

Description

End of a temporal entity.

Inherits from

Usage

DOMAINPROPERTYRANGE
time:TemporalEntity time:hasEnd time:Instant

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#> .

time:hasEnd a owl:ObjectProperty ;
    rdfs:label "has end"@en,
        "tiene fin"@es ;
    rdfs:comment "End of a temporal entity."@en,
        "Final de una entidad temporal."@es ;
    rdfs:domain time:TemporalEntity ;
    rdfs:range time:Instant ;
    rdfs:subPropertyOf time:hasTime ;
    skos:definition "End of a temporal entity."@en,
        "Final de una entidad temporal."@es .