:hasFork leaf node


URI

http://ethon.consensys.net/hasFork

Label

has Fork

Description

Relates a blockchain to a forked version of it. It is inverse functional because a forked blockchain can have only one blockchain it forked from. It is transitive because if a blockchain C that was forked from blockchain B that in turn was forked from blockchain A, blockchain C was also forked from blockchain A. It is asymetric because if blockchain A is forked from blockchain B, B cannot be also forked from A. It is irreflexive because a blockchain cannot be a fork of itself.

Usage

DOMAINPROPERTYRANGE
:Blockchain :hasFork :Blockchain

Implementation

@prefix : <http://ethon.consensys.net/> .
@prefix ns: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:hasFork a owl:ObjectProperty,
        owl:TransitiveProperty ;
    rdfs:label "has Fork"@en ;
    :suggestedStringRepresentation "hasFork" ;
    rdfs:comment "Relates a blockchain to a forked version of it. It is inverse functional because a forked blockchain can have only one blockchain it forked from. It is transitive because if a blockchain C that was forked from blockchain B that in turn was forked from blockchain A, blockchain C was also forked from blockchain A. It is asymetric because if blockchain A is forked from blockchain B, B cannot be also forked from A. It is irreflexive because a blockchain cannot be a fork of itself."@en ;
    rdfs:domain :Blockchain ;
    rdfs:range :Blockchain ;
    rdfs:subPropertyOf :NetworkObjectProperty ;
    ns:term_status "unstable" .