@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix proeth-core: <http://proethica.org/ontology/core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ro: <http://purl.obolibrary.org/obo/RO_> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

proeth-core:isPerformedBy a owl:ObjectProperty ;
    rdfs:label "is performed by"@en ;
    rdfs:comment "Relates an action to the agent that performs it. Inverse of performsAction."@en ;
    rdfs:domain proeth-core:Action ;
    rdfs:range proeth-core:Agent ;
    rdfs:subPropertyOf ro:0000057 ;
    owl:inverseOf proeth-core:performsAction ;
    skos:changeNote "v2.4.1: Added as named inverse of performsAction to support OWL DL-compliant cardinality restriction on Action."@en ;
    skos:definition "Relates an action to the agent responsible for performing it."@en .

