as:inReplyTo leaf node


URI

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

Label

inReplyTo

Description

Indicates one or more entities for which this object is considered a response.

Usage

DOMAINPROPERTYRANGE
as:Object , Blank node (see implementation) as:inReplyTo 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:inReplyTo a owl:ObjectProperty ;
    rdfs:label "inReplyTo"@en ;
    rdfs:comment "Indicates one or more entities for which this object is considered a response."@en ;
    rdfs:domain as:Object ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( as:Object as:Link ) ] .