blockchain:Transaction leaf node


URI

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

Label

Transaction

Description

A record of data registration or value transfer between accounts

Usage

Instances of blockchain:Transaction can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class blockchain:Transaction
cardano:hasCBOREncoding owl:DatatypeProperty The CBOR binary encoding of a transaction. xsd:base64Binary
cardano:hasFee owl:DatatypeProperty The transaction fee. xsd:decimal
cardano:hasTransactionID owl:DatatypeProperty Relates a transaction with its identifier. xsd:string
cardano:belongsToEra owl:ObjectProperty Associates a transaction with its corresponding Cardano protocol era, establishing the context of features and capabilities available for that entity cardano:ProtocolEra
cardano:hasAnchor owl:ObjectProperty Links a transaction to its reference block for transaction ordering blockchain:Block
cardano:hasCollateral owl:ObjectProperty Relates a transaction to its collateral inputs. cardano:CollateralInput
cardano:hasInput owl:ObjectProperty Relates a transaction to its inputs. cardano:TransactionInput
cardano:hasMintedAsset owl:ObjectProperty Relates a transaction to the asset it is minting. blockchain:Token
cardano:hasOutput owl:ObjectProperty Relates a transaction to its outputs. cardano:TransactionOutput
cardano:hasReferenceInput owl:ObjectProperty Relates a transaction to its reference inputs. cardano:ReferenceInput
cardano:hasTransactionMetadata owl:ObjectProperty Relates a transaction to its metadata. cardano:TransactionMetadata
cardano:hasWitness owl:ObjectProperty Relates a transaction to its witnesses. cardano:TransactionWitness

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

blockchain:Transaction a owl:Class ;
    rdfs:label "Transaction"@en ;
    rdfs:comment "A record of data registration or value transfer between accounts"@en .