sec:AccessControlRule leaf node


URI

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

Label

AccessControlRule

Description

A rule that specifies permissions for an agent or role to perform an action on a resource.

Usage

Instances of sec:AccessControlRule can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class sec:AccessControlRule
sec:allowedAction owl:DatatypeProperty e.g., 'read', 'write', 'execute'. xsd:string
sec:restrictedToRole owl:DatatypeProperty Specifies the role to which the rule applies, e.g., 'auditor', 'owner'. 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#> .

sec:AccessControlRule a owl:Class ;
    rdfs:label "AccessControlRule" ;
    rdfs:comment "A rule that specifies permissions for an agent or role to perform an action on a resource." .