DLTOntology:isUsedFor leaf node


URI

https://w3id.org/DLTOntology#isUsedFor

Label

isUsedFor

Description

There are certain distributed ledger systems that are specialized for the use in one specific field or industry. This property is used to highlight this exact relation.

Usage

DOMAINPROPERTYRANGE
DLTOntology:DLTSystem DLTOntology:isUsedFor DLTOntology:BusinessSector

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

:isUsedFor a owl:ObjectProperty ;
    rdfs:label "isUsedFor" ;
    rdfs:comment "There are certain distributed ledger systems that are specialized for the use in one specific field or industry. This property is used to highlight this exact relation." ;
    rdfs:domain :DLTSystem ;
    rdfs:range :BusinessSector ;
    rdfs:subPropertyOf owl:topObjectProperty .