https://www.w3id.org/rcao#runsProcess
Associate Agents (Humans or machines) with the process or action to be undertaken.
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| prov:Agent , Blank node (see implementation) | rcao:runsProcess | owl:Thing (inferred) |
@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 .