:logTopicIndex leaf node


Label

Log Topic index

Description

Relates a log topic to its index in the log entry. The log topic index defines the order of the log topics of in log entry.

Usage

DOMAINPROPERTYRANGE
:LogTopic :logTopicIndex 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#> .

:logTopicIndex a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Log Topic index"@en ;
    :suggestedStringRepresentation "logTopicIndex" ;
    rdfs:comment "Relates a log topic to its index in the log entry. The log topic index defines the order of the log topics of in log entry."@en ;
    rdfs:domain :LogTopic ;
    rdfs:range xsd:integer ;
    rdfs:subPropertyOf :MessageDataProperty ;
    ns:term_status "unstable" .