as:target leaf node


URI

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

Label

target

Description

Describes the indirect object, or target, of the activity. The precise meaning of the target is largely dependent on the type of action being described but will often be the object of the English preposition "to". For instance, in the activity "John added a movie to his wishlist", the target of the activity is John's wishlist. An activity can have more than one target.

Usage

DOMAINPROPERTYRANGE
as:Activity , Blank node (see implementation) as:target owl:Thing (inferred)

Implementation

@prefix as: <http://www.w3.org/ns/activitystreams#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

as:target a owl:ObjectProperty ;
    rdfs:label "target"@en ;
    rdfs:comment "Describes the indirect object, or target, of the activity. The precise meaning of the target is largely dependent on the type of action being described but will often be the object of the English preposition \"to\". For instance, in the activity \"John added a movie to his wishlist\", the target of the activity is John's wishlist. An activity can have more than one target."@en ;
    rdfs:domain as:Activity ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( as:Object as:Link ) ] .