as:endTime leaf node


URI

http://www.w3.org/ns/activitystreams#endTime

Label

endTime

Description

The ending time of the object

Usage

DOMAINPROPERTYRANGE
as:Object as:endTime xsd:dateTime

Implementation

@prefix as: <http://www.w3.org/ns/activitystreams#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

as:endTime a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "endTime"@en ;
    rdfs:comment "The ending time of the object"@en ;
    rdfs:domain as:Object ;
    rdfs:range xsd:dateTime .