core:contextOf leaf node


URI

https://w3id.org/agent-ontology/core#contextOf

Label

contextOf

Description

Indicates that an ExecutionContext applies to a specific Action.

Usage

DOMAINPROPERTYRANGE
core:ExecutionContext core:contextOf core:Action

Implementation

@prefix core: <https://w3id.org/agent-ontology/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

core:contextOf a owl:ObjectProperty ;
    rdfs:label "contextOf" ;
    rdfs:comment "Indicates that an ExecutionContext applies to a specific Action." ;
    rdfs:domain core:ExecutionContext ;
    rdfs:range core:Action .