blockchain:hasConversionRate leaf node


URI

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

Label

has conversion rate

Description

A property that defines the conversion between an asset and its denomination. For instance, 1 ADA = 1,000,000 Lovelace.

Usage

DOMAINPROPERTYRANGE
blockchain:FungibleToken blockchain:hasConversionRate xsd:integer

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:hasConversionRate a owl:DatatypeProperty ;
    rdfs:label "has conversion rate"@en ;
    rdfs:comment "A property that defines the conversion between an asset and its denomination. For instance, 1 ADA = 1,000,000 Lovelace."@en ;
    rdfs:domain blockchain:FungibleToken ;
    rdfs:range xsd:integer .