DLTOntology:isSpecializedFor leaf node


URI

https://w3id.org/DLTOntology#isSpecializedFor

Label

isSpecializedFor

Description

Not all implementations of distributed ledger systems are the same or similar in their nature and complexion. This property links existing DLT systems which are tailored for the delivery of a specific use case.

Usage

DOMAINPROPERTYRANGE
DLTOntology:DLTSystem DLTOntology:isSpecializedFor DLTOntology:UseCase

Implementation

@prefix : <https://w3id.org/DLTOntology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:isSpecializedFor a owl:ObjectProperty ;
    rdfs:label "isSpecializedFor" ;
    rdfs:comment "Not all implementations of distributed ledger systems are the same or similar in their nature and complexion. This property links existing DLT systems which are tailored for the delivery of a specific use case." ;
    rdfs:domain :DLTSystem ;
    rdfs:range :UseCase ;
    rdfs:subPropertyOf owl:topObjectProperty .