as:outbox leaf node


URI

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

Label

outbox

Description

The object's activity outbox (ordered, but order is undefined?)

Usage

DOMAINPROPERTYRANGE
as:Actor as:outbox as:OrderedActivityCollection

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#> .

as:outbox a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "outbox"@en ;
    rdfs:comment "The object's activity outbox (ordered, but order is undefined?)"@en ;
    rdfs:domain as:Actor ;
    rdfs:range as:OrderedActivityCollection .