types:threadSuccessor


URI

https://ontology.unifiedcyberontology.org/uco/types/threadSuccessor

Label

threadSuccessor

Description

A link to a following item in a thread.

Sub Property

Usage

DOMAINPROPERTYRANGE
types:ThreadItem types:threadSuccessor types:ThreadItem

Implementation

@prefix co: <http://purl.org/co/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix types: <https://ontology.unifiedcyberontology.org/uco/types/> .

types:threadSuccessor a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "threadSuccessor"@en ;
    rdfs:comment "A link to a following item in a thread."@en ;
    rdfs:domain types:ThreadItem ;
    rdfs:range types:ThreadItem ;
    rdfs:seeAlso co:followedBy .