as:subject leaf node


URI

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

Label

a

Description

On a Relationship object, identifies the subject. e.g. when saying "John is connected to Sally", 'subject' refers to 'John'

Usage

DOMAINPROPERTYRANGE
as:Relationship , Blank node (see implementation) as:subject 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: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 .