as:inbox leaf node


URI

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

Label

inbox

Description

The object's activity inbox containing all activities received by the actor (reverse-chronological order)

Usage

DOMAINPROPERTYRANGE
as:Actor as:inbox as:OrderedActivityCollection

Implementation

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

as:inbox a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "inbox"@en ;
    rdfs:comment "The object's activity inbox containing all activities received by the actor (reverse-chronological order)"@en ;
    rdfs:domain as:Actor ;
    rdfs:range as:OrderedActivityCollection ;
    rdfs:subPropertyOf ldp:inbox .