http://www.w3.org/ns/activitystreams#attributedTo
Identifies an entity to which an object is attributed
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) , Blank node (see implementation) | as:attributedTo | 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:attributedTo a owl:ObjectProperty ;
rdfs:label "attributedTo"@en ;
rdfs:comment "Identifies an entity to which an object is attributed"@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( as:Object as:Link ) ] ;
rdfs:range [ a owl:Class ;
owl:unionOf ( as:Object as:Link ) ] .