:containsCanonicalBlock leaf node


Label

contains canonical Block

Description

Relates a blockchain to a canonical block that it contains. A canonical Block is the first block in a blockchain after a fork and that conforms to a new protocol variant.

Usage

DOMAINPROPERTYRANGE
:Blockchain :containsCanonicalBlock :Block

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#> .

:containsCanonicalBlock a owl:ObjectProperty ;
    rdfs:label "contains canonical Block" ;
    :suggestedStringRepresentation "containsCanonicalBlock" ;
    rdfs:comment "Relates a blockchain to a canonical block that it contains. A canonical Block is the first block in a blockchain after a fork and that conforms to a new protocol variant."@en ;
    rdfs:domain :Blockchain ;
    rdfs:range :Block ;
    rdfs:subPropertyOf :containsBlock ;
    ns:term_status "unstable" .