DLTOntology:hasComponent leaf node


URI

https://w3id.org/DLTOntology#hasComponent

Label

hasComponent

Description

It links an individual component to the DLT system. It is used to show what a system is comprised of and to get a better understanding of the elements and building blocks. Such an overview allows for an analysis or or the implementation of measures for a singular component specifically and to tailor solutions to certain requirements.

Usage

DOMAINPROPERTYRANGE
DLTOntology:DLTSystem DLTOntology:hasComponent DLTOntology:DLTComponent

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

:hasComponent a owl:ObjectProperty ;
    rdfs:label "hasComponent"^^xsd:string ;
    rdfs:comment "It links an individual component to the DLT system. It is used to show what a system is comprised of and to get a better understanding of the elements and building blocks. Such an overview allows for an analysis or or the implementation of measures for a singular component specifically and to tailor solutions to certain requirements." ;
    rdfs:domain :DLTSystem ;
    rdfs:range :DLTComponent ;
    rdfs:subPropertyOf owl:topObjectProperty .