rcao:runsProcess leaf node


URI

https://www.w3id.org/rcao#runsProcess

Label

runsProcess

Description

Associate Agents (Humans or machines) with the process or action to be undertaken.

Usage

DOMAINPROPERTYRANGE
prov:Agent , Blank node (see implementation) rcao:runsProcess owl:Thing (inferred)

Implementation

@prefix ago: <http://vcd.vicomtech.org/ontology/automotive#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rcao: <https://www.w3id.org/rcao#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

rcao:runsProcess a owl:ObjectProperty ;
    rdfs:comment "Associate Agents (Humans or machines) with the process or action to be undertaken." ;
    rdfs:domain prov:Agent ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( prov:Activity ago:Action ) ] ;
    owl:inverseOf prov:wasAssociatedWith .