http://www.w3.org/ns/activitystreams#result
Describes the result of the activity. For instance, if a particular action results in the creation of a new resource, the result property can be used to describe that new resource.
DOMAIN | PROPERTY | RANGE |
---|---|---|
as:Activity , Blank node (see implementation) | as:result | 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:result a owl:ObjectProperty ;
rdfs:label "result"@en ;
rdfs:comment "Describes the result of the activity. For instance, if a particular action results in the creation of a new resource, the result property can be used to describe that new resource."@en ;
rdfs:domain as:Activity ;
rdfs:range [ a owl:Class ;
owl:unionOf ( as:Object as:Link ) ] .