@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

prov:actedOnBehalfOf a owl:ObjectProperty ;
    rdfs:label "actedOnBehalfOf" ;
    rdfs:comment "An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity. " ;
    rdfs:domain prov:Agent ;
    rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
    rdfs:range prov:Agent ;
    rdfs:subPropertyOf prov:wasInfluencedBy ;
    owl:propertyChainAxiom [ rdf:first prov:qualifiedDelegation ;
            rdf:rest [ ] ] ;
    skos:definition "An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity. " ;
    prov:category "starting-point" ;
    prov:component "agents-responsibility" ;
    prov:inverse "hadDelegate" ;
    prov:qualifiedForm prov:Delegation,
        prov:qualifiedDelegation .

