sec:restrictedToRole leaf node


URI

https://w3id.org/agent-ontology/security-binding#restrictedToRole

Label

restrictedToRole

Description

Specifies the role to which the rule applies, e.g., 'auditor', 'owner'.

Usage

DOMAINPROPERTYRANGE
sec:AccessControlRule sec:restrictedToRole xsd:string

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sec: <https://w3id.org/agent-ontology/security-binding#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

sec:restrictedToRole a owl:DatatypeProperty ;
    rdfs:comment "Specifies the role to which the rule applies, e.g., 'auditor', 'owner'." ;
    rdfs:domain sec:AccessControlRule ;
    rdfs:range xsd:string .