DLTOntology:threatens leaf node


URI

https://w3id.org/DLTOntology#threatens

Label

threatens

Description

This property indicated that there is an existing attack on a distributed ledger system or one of its components. Attacks can manipulate specific components and data, or generally weaken the structural integrity of the entire system.

Usage

DOMAINPROPERTYRANGE
DLTOntology:Attack DLTOntology:threatens DLTOntology:DLTSystem , 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#> .

:threatens a owl:ObjectProperty ;
    rdfs:label "threatens" ;
    rdfs:comment "This property indicated that there is an existing attack on a distributed ledger system or one of its components. Attacks can manipulate specific components and data, or generally weaken the structural integrity of the entire system." ;
    rdfs:domain :Attack ;
    rdfs:range :DLTComponent,
        :DLTSystem ;
    rdfs:subPropertyOf owl:topObjectProperty .