:containsTx leaf node


Label

contains Transaction

Description

Relates a block to a transaction included in it. All containsTx relations of a block comprise the block's transaction list. The order of the transactions is determined by their index value. The property is inverse functional because a transaction can only be included in one block.

Usage

DOMAINPROPERTYRANGE
:Block :containsTx :Tx

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

:containsTx a owl:InverseFunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "contains Transaction"@en ;
    :suggestedStringRepresentation "containsTx" ;
    rdfs:comment "Relates a block to a transaction included in it. All containsTx relations of a block comprise the block's transaction list. The order of the transactions is determined by their index value. The property is inverse functional because a transaction can only be included in one block."@en ;
    rdfs:domain :Block ;
    rdfs:range :Tx ;
    rdfs:subPropertyOf :BlockObjectProperty ;
    ns:term_status "unstable" .