@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#> .

prov:wasAttributedTo a owl:ObjectProperty ;
    rdfs:label "wasAttributedTo"^^rdf:string ;
    rdfs:comment "Attribution is the ascribing of an entity to an agent."@en ;
    rdfs:domain prov:Entity ;
    rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
    rdfs:range prov:Agent ;
    rdfs:subPropertyOf prov:wasInfluencedBy ;
    owl:propertyChainAxiom ( prov:qualifiedAttribution prov:agent ) ;
    prov:category "starting-point"^^rdf:string ;
    prov:component "agents-responsibility"^^rdf:string ;
    prov:definition "Attribution is the ascribing of an entity to an agent."@en ;
    prov:inverse "contributed"^^rdf:string ;
    prov:qualifiedForm prov:Attribution,
        prov:qualifiedAttribution .