http://www.mobr.ai/ontologies/ponto#validatorAtCapacity
The maximum number of nominators signalling intent to nominate a validator (and thus could potentially actively nominate that validator in the next session). This maximum number will equal the number of nominators necessary to oversubscribe a validator. Any validator which is 'at capacity' or higher may potentially be oversubscribed in the next session; a validator that is not at capacity cannot be oversubscribed unless more nominators select it before the next election.
DOMAIN | PROPERTY | RANGE |
---|---|---|
ponto:Validator | ponto:validatorAtCapacity | xsd:integer |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix ponto: <http://www.mobr.ai/ontologies/ponto#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ponto:validatorAtCapacity a owl:ObjectProperty ;
rdfs:comment "The maximum number of nominators signalling intent to nominate a validator (and thus could potentially actively nominate that validator in the next session). This maximum number will equal the number of nominators necessary to oversubscribe a validator. Any validator which is 'at capacity' or higher may potentially be oversubscribed in the next session; a validator that is not at capacity cannot be oversubscribed unless more nominators select it before the next election." ;
rdfs:domain ponto:Validator ;
rdfs:range xsd:integer ;
rdfs:subPropertyOf [ a owl:FunctionalProperty ;
owl:hasValue ponto:capacity ;
owl:inverseOf owl:hasValue ] .