as:updated leaf node


URI

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

Label

updated

Description

Specifies when the object was last updated

Usage

DOMAINPROPERTYRANGE
as:Object as:updated 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:updated a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "updated"@en ;
    rdfs:comment "Specifies when the object was last updated"@en ;
    rdfs:domain as:Object ;
    rdfs:range xsd:dateTime .