blockchain:hasDenominationName leaf node


URI

http://www.mobr.ai/ontologies/blockchain#hasDenominationName

Label

has denomination name

Description

Reference the name of the fractional unit of a cryptocurrency. For instance, Lovelace.

Usage

DOMAINPROPERTYRANGE
blockchain:FungibleToken blockchain:hasDenominationName xsd:string

Implementation

@prefix blockchain: <http://www.mobr.ai/ontologies/blockchain#> .
@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#> .

blockchain:hasDenominationName a owl:DatatypeProperty ;
    rdfs:label "has denomination name"@en ;
    rdfs:comment "Reference the name of the fractional unit of a cryptocurrency. For instance, Lovelace."@en ;
    rdfs:domain blockchain:FungibleToken ;
    rdfs:range xsd:string .