ponto:reservedFor leaf node


URI

http://www.mobr.ai/ontologies/ponto#reservedFor

Label

reservedFor

Description

Tokens can be reserved for various reasons that use space in the chain state. Unlike locks, reserves do stack. So, each new action that requires a deposit reserves the necessary amount added to any previous reserves that might exist.

Usage

DOMAINPROPERTYRANGE
ponto:ReservedBalance ponto:reservedFor ponto:ReservationReason

Implementation

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

ponto:reservedFor a owl:ObjectProperty ;
    rdfs:comment "Tokens can be reserved for various reasons that use space in the chain state. Unlike locks, reserves do stack. So, each new action that requires a deposit reserves the necessary amount added to any previous reserves that might exist." ;
    rdfs:domain ponto:ReservedBalance ;
    rdfs:range ponto:ReservationReason .