@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

prov:mentionOf a owl:ObjectProperty ;
    rdfs:label "mentionOf" ;
    rdfs:comment """prov:mentionOf is used to specialize an entity as described in another bundle. It is to be used in conjuction with prov:asInBundle.

prov:asInBundle is used to cite the Bundle in which the generalization was mentioned."""@en ;
    rdfs:domain prov:Entity ;
    rdfs:isDefinedBy <http://www.w3.org/ns/prov-links#> ;
    rdfs:range prov:Entity ;
    rdfs:subPropertyOf prov:specializationOf ;
    prov:inverse "hadMention" .

