DLTOntology:hasBusinessSector leaf node


URI

https://w3id.org/DLTOntology#hasBusinessSector

Label

hasBusinessSector

Description

Distributed ledger technology can be used to realize a variety of different use cases. However, not all of them are a fit for any field or industry. This property highlights the connection between a use case and the specific business sector/industry it is used in.

Usage

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

:hasBusinessSector a owl:ObjectProperty ;
    rdfs:label "hasBusinessSector"^^xsd:string ;
    rdfs:comment "Distributed ledger technology can be used to realize a variety of different use cases. However, not all of them are a fit for any field or industry. This property highlights the connection between a use case and the specific business sector/industry it is used in." ;
    rdfs:domain :UseCase ;
    rdfs:range :BusinessSector ;
    rdfs:subPropertyOf owl:topObjectProperty .