http://www.w3.org/ns/activitystreams#subject
On a Relationship object, identifies the subject. e.g. when saying "John is connected to Sally", 'subject' refers to 'John'
DOMAIN | PROPERTY | RANGE |
---|---|---|
as:Relationship , Blank node (see implementation) | as:subject | 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:subject a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:label "a"@en ;
rdfs:comment "On a Relationship object, identifies the subject. e.g. when saying \"John is connected to Sally\", 'subject' refers to 'John'"@en ;
rdfs:domain as:Relationship ;
rdfs:range [ a owl:Class ;
owl:unionOf ( as:Link as:Object ) ] ;
rdfs:subPropertyOf rdf:subject .