https://w3id.org/agent-ontology/security-binding#AccessControlRule
A rule that specifies permissions for an agent or role to perform an action on a resource.
Instances of sec:AccessControlRule can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| 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 |
@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." .