blockchain:hasTimestamp leaf node


URI

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

Label

has timestamp

Description

The point in time of an event.

Usage

DOMAINPROPERTYRANGE
blockchain:Block blockchain:hasTimestamp xsd:dateTime

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:hasTimestamp a owl:DatatypeProperty ;
    rdfs:label "has timestamp"@en ;
    rdfs:comment "The point in time of an event."@en ;
    rdfs:domain blockchain:Block ;
    rdfs:range xsd:dateTime .