DLTOntology:hasUseCase leaf node


URI

https://w3id.org/DLTOntology#hasUseCase

Label

hasUseCase

Description

This property is used to show which use cases could be used in a selected industry. Not all forms of usage of distributed ledger systems are fit for all types of business.

Usage

DOMAINPROPERTYRANGE
DLTOntology:BusinessSector DLTOntology:hasUseCase 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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:hasUseCase a owl:ObjectProperty ;
    rdfs:label "hasUseCase"^^xsd:string ;
    rdfs:comment "This property is used to show which use cases could be used in a selected industry. Not all forms of usage of distributed ledger systems are fit for all types of business." ;
    rdfs:domain :BusinessSector ;
    rdfs:range :UseCase ;
    rdfs:subPropertyOf owl:topObjectProperty .