types:threadPredecessor


URI

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

Label

threadPredecessor

Description

The link to the preceding item in a thread.

Usage

DOMAINPROPERTYRANGE
types:ThreadItem types:threadPredecessor 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:threadPredecessor a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "threadPredecessor"@en ;
    rdfs:comment "The link to the preceding item in a thread."@en ;
    rdfs:domain types:ThreadItem ;
    rdfs:range types:ThreadItem ;
    rdfs:seeAlso co:precededBy ;
    owl:inverseOf types:threadSuccessor .