DLTOntology:mitigates leaf node


URI

https://w3id.org/DLTOntology#mitigates

Label

mitigates

Description

Once disaster strikes, it is important to have a series of mitigations in place, to reduce the impact of an attack, malicious event or generally in case of the system breaking down. This property links a technical or organizational mitigation measure to a distributed ledger system or specific component.

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

:mitigates a owl:ObjectProperty ;
    rdfs:label "mitigates" ;
    rdfs:comment "Once disaster strikes, it is important to have a series of mitigations in place, to reduce the impact of an attack, malicious event or generally in case of the system breaking down. This property links a technical or organizational mitigation measure to a distributed ledger system or specific component." ;
    rdfs:domain :OrganizationalMitigation,
        :TechnicalMitigation ;
    rdfs:range :DLTComponent,
        :DLTSystem ;
    rdfs:subPropertyOf owl:topObjectProperty .