as:followers leaf node


URI

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

Label

followers

Description

This is a collection of actors that have sent a Follow activity for the actor.

Usage

DOMAINPROPERTYRANGE
as:Actor , Blank node (see implementation) as:followers 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:followers a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:comment "This is a collection of actors that have sent a Follow activity for the actor."@en ;
    rdfs:domain as:Actor ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( as:OrderedActorCollection as:ActorCollection ) ] .