DLTOntology:controls leaf node


URI

https://w3id.org/DLTOntology#controls

Label

controls

Description

Implemented controls can secure components and the entire system itself. This property links a technical or organizational control measure to a distributed ledger system or individual 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#> .

:controls a owl:ObjectProperty ;
    rdfs:label "controls" ;
    rdfs:comment "Implemented controls can secure components and the entire system itself. This property links a technical or organizational control measure to a distributed ledger system or individual component." ;
    rdfs:domain :OrganizationalControl,
        :TechnicalControl ;
    rdfs:range :DLTComponent,
        :DLTSystem ;
    rdfs:subPropertyOf owl:topObjectProperty .