sec:allowedAction leaf node


URI

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

Label

allowedAction

Description

e.g., 'read', 'write', 'execute'.

Usage

DOMAINPROPERTYRANGE
sec:AccessControlRule sec:allowedAction 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:allowedAction a owl:DatatypeProperty ;
    rdfs:comment "e.g., 'read', 'write', 'execute'." ;
    rdfs:domain sec:AccessControlRule ;
    rdfs:range xsd:string .