as:object leaf node


URI

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

Label

object

Description

When used within an Activity, describes the direct object of the activity. For instance, in the activity "John added a movie to his wishlist", the object of the activity is the movie added.

When used within a Relationship describes the entity to which the subject is related.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) , Blank node (see implementation) as:object 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:object a owl:ObjectProperty ;
    rdfs:label "object"@en ;
    rdfs:comment """When used within an Activity, describes the direct object of the activity. For instance, in the activity "John added a movie to his wishlist", the object of the activity is the movie added.

When used within a Relationship describes the entity to which the subject is related."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( as:Activity as:Relationship ) ] ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( as:Object as:Link ) ] .