:clientVersion leaf node


Label

runs client

Description

Relates a node to a string identifying the Ethereum client version it runs. It composed of the client name (e.g. Geth) and a version identifier (e.g. v1.5.4).

Usage

DOMAINPROPERTYRANGE
:Node :clientVersion xsd:string

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

:clientVersion a owl:DatatypeProperty ;
    rdfs:label "runs client"@en ;
    :suggestedStringRepresentation "clientVersion" ;
    rdfs:comment "Relates a node to a string identifying the Ethereum client version it runs. It composed of the client name (e.g. Geth) and a version identifier (e.g. v1.5.4)."@en ;
    rdfs:domain :Node ;
    rdfs:range xsd:string ;
    rdfs:subPropertyOf :NetworkDataProperty ;
    ns:term_status "unstable" .