DLTOntology:hasVulnerability leaf node


URI

https://w3id.org/DLTOntology#hasVulnerability

Label

hasVulnerability

Description

This property indicates that one or multiple of the components used in a distributed ledger system carry with them one or an array of vulnerabilities. Having an overview of existing vulnerabilities is crucial for securing the system.

Usage

DOMAINPROPERTYRANGE
DLTOntology:DLTComponent DLTOntology:hasVulnerability DLTOntology:Vulnerability

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

:hasVulnerability a owl:ObjectProperty ;
    rdfs:label "hasVulnerability" ;
    rdfs:comment "This property indicates that one or multiple of the components used in a distributed ledger system carry with them one or an array of vulnerabilities. Having an overview of existing vulnerabilities is crucial for securing the system." ;
    rdfs:domain :DLTComponent ;
    rdfs:range :Vulnerability ;
    rdfs:subPropertyOf owl:topObjectProperty .