ponto:Transfer


URI

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

Label

Transfer

Description

Send an asset from one account to another. This generally refers to transfers that occur only on the same chain.

Usage

Instances of ponto:Transfer can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class ponto:Transfer
ponto:hasTransferBeneficiary owl:ObjectProperty ponto:Beneficiary
From class ponto:LedgerRecord
ponto:decrementsRefCount owl:ObjectProperty A Transaction or an Account can decrement a Reference Counter ponto:ReferenceCounter
ponto:hasReserved owl:ObjectProperty ponto:ReservedBalance
ponto:incrementsRefCount owl:ObjectProperty A Transaction or an Account can increment a Reference Counter ponto:ReferenceCounter
ponto:recordedOn owl:ObjectProperty The block where a record is stored ponto:Block

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:Transfer a owl:Class ;
    rdfs:label "Transfer" ;
    rdfs:comment "Send an asset from one account to another. This generally refers to transfers that occur only on the same chain." ;
    rdfs:subClassOf ponto:LedgerRecord .