:isIndexed leaf node


Label

is indexed

Description

True if the Input of an Event should be stored as a LogTopic of a LogEntry. Up to three parameters can receive this property which will cause the respective arguments to be treated as LogTopics instead of data. All non-indexed arguments will be stored in the data part of the LogEntry that represents the Event.

Usage

DOMAINPROPERTYRANGE
:Input :isIndexed xsd:boolean

Implementation

@prefix : <http://ethon.consensys.net/Contracts/> .
@prefix ethon: <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#> .

:isIndexed a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "is indexed"@en ;
    ethon:suggestedStringRepresentation "isIndexed" ;
    rdfs:comment "True if the Input of an Event should be stored as a LogTopic of a LogEntry. Up to three parameters can receive this property which will cause the respective arguments to be treated as LogTopics instead of data. All non-indexed arguments will be stored in the data part of the LogEntry that represents the Event."@en ;
    rdfs:domain :Input ;
    rdfs:range xsd:boolean ;
    rdfs:subPropertyOf :EthOnContractsDataProperty ;
    ns:term_status "unstable" .