:logIndex leaf node


Label

Log index

Description

Relates a log entry to its index in the transaction reciept of a transaction. The log index defines the order of the log entries of a transaction.

Usage

DOMAINPROPERTYRANGE
:Tx :logIndex xsd:integer

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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:logIndex a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Log index"@en ;
    :suggestedStringRepresentation "logIndex" ;
    rdfs:comment "Relates a log entry to its index in the transaction reciept of a transaction. The log index defines the order of the log entries of a transaction."@en ;
    rdfs:domain :Tx ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :MessageDataProperty ;
    ns:term_status "unstable" .