ponto:NFT leaf node


URI

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

Label

Non-fungible Token

Description

A non-fungible token is a token that does not hold the property of fungibility, which, in turn, means that it cannot be interchangeable and indistinguishable from other tokens. NFTs allow the tokenization of unique items and provide exclusive ownership for those tokens.

Superclasses (2)

Usage

Instances of ponto:NFT can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class ponto:Asset
ponto:bonding rdf:Property A process by which tokens can be 'frozen' in exchange for some other benefit. For example, staking is a form of bonding for which you receive rewards in exchange for securing the network. You can also bond tokens in exchange for a parachain slot. xsd:decimal

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:NFT a owl:Class ;
    rdfs:label "Non-fungible Token" ;
    rdfs:comment "A non-fungible token is a token that does not hold the property of fungibility, which, in turn, means that it cannot be interchangeable and indistinguishable from other tokens. NFTs allow the tokenization of unique items and provide exclusive ownership for those tokens." ;
    rdfs:subClassOf ponto:Asset .