DLTOntology:isRegulatedBy leaf node


URI

https://w3id.org/DLTOntology#isRegulatedBy

Label

isRegulatedBy

Description

As with regular ICT-systems, a distributed ledger system will have to comply with the legal status of the respective country it is used in by any organization. This property connects existing legislation for ICT and DLT systems.

Usage

DOMAINPROPERTYRANGE
DLTOntology:DLTSystem DLTOntology:isRegulatedBy DLTOntology:Law

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

:isRegulatedBy a owl:ObjectProperty ;
    rdfs:label "isRegulatedBy"^^xsd:string ;
    rdfs:comment "As with regular ICT-systems, a distributed ledger system will have to comply with the legal status of the respective country it is used in by any organization. This property connects existing legislation for ICT and DLT systems." ;
    rdfs:domain :DLTSystem ;
    rdfs:range :Law ;
    rdfs:subPropertyOf owl:topObjectProperty .