http://www.w3.org/ns/activitystreams#audience
Identifies one or more entities that represent the total population of entities for which the object can considered to be relevant.
DOMAIN | PROPERTY | RANGE |
---|---|---|
as:Object , Blank node (see implementation) | as:audience | owl:Thing (inferred) |
@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:audience a owl:ObjectProperty ;
rdfs:label "audience"@en ;
rdfs:comment "Identifies one or more entities that represent the total population of entities for which the object can considered to be relevant."@en ;
rdfs:domain as:Object ;
rdfs:range [ a owl:Class ;
owl:unionOf ( as:Object as:Link ) ] .