as:deleted leaf node


URI

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

Label

deleted

Description

Specifies the date and time the object was deleted

Usage

DOMAINPROPERTYRANGE
as:Tombstone as:deleted 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:deleted a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "deleted"@en ;
    rdfs:comment "Specifies the date and time the object was deleted"@en ;
    rdfs:domain as:Tombstone ;
    rdfs:range xsd:dateTime .