blockchain:Block leaf node


URI

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

Label

Block

Description

A collection of validated transactions in the blockchain

Usage

Instances of blockchain:Block can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class blockchain:Block
blockchain:hasTimestamp owl:DatatypeProperty The point in time of an event. xsd:dateTime
cardano:hasBlockSize owl:DatatypeProperty The size of the block in bytes. xsd:integer
cardano:hasEpochSlot owl:DatatypeProperty The slot number within an epoch. xsd:integer
cardano:hasSlotNumber owl:DatatypeProperty The absolute slot number of a block. xsd:integer
blockchain:hasLeadershipProof owl:ObjectProperty Relates a block to its leadership proof. blockchain:LeadershipProof
blockchain:hasNextBlock owl:ObjectProperty Relates a block to its next block. blockchain:Block
blockchain:hasPreviousBlock owl:ObjectProperty Relates a block to its previous block. blockchain:Block
blockchain:hasTransaction owl:ObjectProperty Relates a block with the transactions recorded in it. blockchain:Transaction
cardano:hasSlotLeader owl:ObjectProperty Relates a block to its producing slot leader. cardano:SlotLeader

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:Block a owl:Class ;
    rdfs:label "Block"@en ;
    rdfs:comment "A collection of validated transactions in the blockchain"@en .