DLTOntology:isCompliantTo leaf node


URI

https://w3id.org/DLTOntology#isCompliantTo

Label

isCompliantTo

Description

When it comes to using distributed ledger systems in an enterprise setting, national and/or international standardization can become a necessity. This property expresses compliance to existing standardization or normative references on a system or component level.

Usage

DOMAINPROPERTYRANGE
DLTOntology:DLTComponent , DLTOntology:DLTSystem DLTOntology:isCompliantTo DLTOntology:Standard

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

:isCompliantTo a owl:ObjectProperty ;
    rdfs:label "isCompliantTo"^^xsd:string ;
    rdfs:comment "When it comes to using distributed ledger systems in an enterprise setting, national and/or international standardization can become a necessity. This property expresses compliance to existing standardization or normative references on a system or component level." ;
    rdfs:domain :DLTComponent,
        :DLTSystem ;
    rdfs:range :Standard ;
    rdfs:subPropertyOf owl:topObjectProperty .