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

prov:Activity  a          owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Activity" ;
        owl:disjointWith  prov:Entity ;
        prov:category     "starting-point" ;
        prov:component    "entities-activities" ;
        prov:constraints  "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition   "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities." ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Activity"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity"^^xsd:anyURI .

prov:entity  a                  owl:ObjectProperty ;
        rdfs:domain             prov:EntityInfluence ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "entity" ;
        rdfs:range              prov:Entity ;
        rdfs:subPropertyOf      prov:influencer ;
        prov:category           "qualified" ;
        prov:editorialNote      "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple."@en ;
        prov:editorsDefinition  "The prov:entity property references an prov:Entity which influenced a resource. This property applies to an prov:EntityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent." ;
        prov:inverse            "entityOfInfluence" .

prov:Derivation  a            owl:Class ;
        rdfs:comment          "An instance of prov:Derivation provides additional descriptions about the binary prov:wasDerivedFrom relation from some derived prov:Entity to another prov:Entity from which it was derived. For example, :chewed_bubble_gum prov:wasDerivedFrom :unwrapped_bubble_gum; prov:qualifiedDerivation [ a prov:Derivation; prov:entity :unwrapped_bubble_gum; :foo :bar ]."@en , "The more specific forms of prov:Derivation (i.e., prov:Revision, prov:Quotation, prov:PrimarySource) should be asserted if they apply."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Derivation" ;
        rdfs:subClassOf       prov:EntityInfluence ;
        prov:category         "qualified" ;
        prov:component        "derivations" ;
        prov:constraints      "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition       "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Derivation"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#Derivation-Relation"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasDerivedFrom .

prov:revisedEntity  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "revisedEntity" ;
        owl:inverseOf     prov:qualifiedRevision .

[ a                      owl:Axiom ;
  rdfs:comment           "hadPrimarySource property is a particular case of wasDerivedFrom (see http://www.w3.org/TR/prov-dm/#term-original-source) that aims to give credit to the source that originated some information." ;
  owl:annotatedProperty  rdfs:subPropertyOf ;
  owl:annotatedSource    prov:hadPrimarySource ;
  owl:annotatedTarget    prov:wasDerivedFrom
] .

prov:InstantaneousEvent
        a                 owl:Class ;
        rdfs:comment      "An instantaneous event, or event for short, happens in the world and marks a change in the world, in its activities and in its entities. The term 'event' is commonly used in process algebra with a similar meaning. Events represent communications or interactions; they are assumed to be atomic and instantaneous."@en ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "InstantaneousEvent" ;
        prov:category     "qualified" ;
        prov:component    "entities-activities" ;
        prov:constraints  "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#dfn-event"^^xsd:anyURI ;
        prov:definition   "The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics."@en .

prov:Communication  a         owl:Class ;
        rdfs:comment          "An instance of prov:Communication provides additional descriptions about the binary prov:wasInformedBy relation from an informed prov:Activity to the prov:Activity that informed it. For example, :you_jumping_off_bridge prov:wasInformedBy :everyone_else_jumping_off_bridge; prov:qualifiedCommunication [ a prov:Communication; prov:activity :everyone_else_jumping_off_bridge; :foo :bar ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Communication" ;
        rdfs:subClassOf       prov:ActivityInfluence ;
        prov:category         "qualified" ;
        prov:component        "entities-activities" ;
        prov:constraints      "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition       "Communication is the exchange of an entity by two activities, one activity using the entity generated by the other." ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Communication"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-wasInformedBy"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasInformedBy .

prov:qualifiedGenerationOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedGenerationOf" ;
        owl:inverseOf     prov:qualifiedGeneration .

[ a                      owl:Axiom ;
  owl:annotatedProperty  rdfs:range ;
  owl:annotatedSource    prov:wasInfluencedBy ;
  owl:annotatedTarget    [ a            owl:Class ;
                           owl:unionOf  ( prov:Activity prov:Agent prov:Entity )
                         ] ;
  prov:definition        "influencer: an identifier (o1) for an ancestor entity, activity, or agent that the former depends on;" ;
  prov:dm                "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence"
] .

prov:wasInvalidatedBy
        a                       owl:ObjectProperty ;
        rdfs:domain             prov:Entity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o-inverses#> , <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "wasInvalidatedBy" ;
        rdfs:range              prov:Activity ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:inverseOf           prov:invalidated ;
        owl:propertyChainAxiom  ( prov:qualifiedInvalidation prov:activity ) ;
        prov:category           "expanded" ;
        prov:component          "entities-activities" ;
        prov:inverse            "invalidated" ;
        prov:qualifiedForm      prov:qualifiedInvalidation , prov:Invalidation .

prov:hadActivity  a                owl:ObjectProperty ;
        rdfs:comment               "The _optional_ Activity of an Influence, which used, generated, invalidated, or was the responsibility of some Entity. This property is _not_ used by ActivityInfluence (use prov:activity instead)."@en , "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>." ;
        rdfs:domain                prov:Influence ;
        rdfs:domain                [ a            owl:Class ;
                                     owl:unionOf  ( prov:Delegation prov:Derivation prov:End prov:Start )
                                   ] ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "hadActivity" ;
        rdfs:range                 prov:Activity ;
        prov:category              "qualified" ;
        prov:component             "derivations" ;
        prov:editorialNote         "The multiple rdfs:domain assertions are intended. One is simpler and works for OWL-RL, the union is more specific but is not recognized by OWL-RL."@en ;
        prov:inverse               "wasActivityOfInfluence" ;
        prov:sharesDefinitionWith  prov:Activity .

prov:hadGeneration  a              owl:ObjectProperty ;
        rdfs:comment               "The _optional_ Generation involved in an Entity's Derivation."@en ;
        rdfs:domain                prov:Derivation ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "hadGeneration" ;
        rdfs:range                 prov:Generation ;
        prov:category              "qualified" ;
        prov:component             "derivations" ;
        prov:inverse               "generatedAsDerivation" ;
        prov:sharesDefinitionWith  prov:Generation .

prov:qualifiedPrimarySource
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ]."@en ;
        rdfs:domain                prov:Entity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedPrimarySource" ;
        rdfs:range                 prov:PrimarySource ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "derivations" ;
        prov:inverse               "qualifiedSourceOf" ;
        prov:sharesDefinitionWith  prov:PrimarySource ;
        prov:unqualifiedForm       prov:hadPrimarySource .

prov:generated  a                  owl:ObjectProperty ;
        rdfs:domain                prov:Activity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o-inverses#> , <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "generated" ;
        rdfs:range                 prov:Entity ;
        rdfs:subPropertyOf         prov:influenced ;
        owl:inverseOf              prov:wasGeneratedBy ;
        prov:category              "expanded" ;
        prov:component             "entities-activities" ;
        prov:editorialNote         "prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions."@en ;
        prov:inverse               "wasGeneratedBy" ;
        prov:sharesDefinitionWith  prov:Generation .

prov:dm  a                  owl:AnnotationProperty ;
        rdfs:comment        "A reference to the principal section of the PROV-DM document that describes this concept."@en ;
        rdfs:isDefinedBy    prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:subPropertyOf  rdfs:seeAlso .

prov:wasDerivedFrom  a          owl:ObjectProperty ;
        rdfs:comment            "The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable."@en ;
        rdfs:domain             prov:Entity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "wasDerivedFrom" ;
        rdfs:range              prov:Entity ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:propertyChainAxiom  ( prov:qualifiedDerivation prov:entity ) ;
        prov:category           "starting-point" ;
        prov:component          "derivations" ;
        prov:definition         "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity."@en ;
        prov:inverse            "hadDerivation" ;
        prov:qualifiedForm      prov:Derivation , prov:qualifiedDerivation .

prov:wasPrimarySourceOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "wasPrimarySourceOf" ;
        owl:inverseOf     prov:hadPrimarySource .

prov:KeyEntityPair  a     owl:Class ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "Key-Entity Pair" ;
        rdfs:subClassOf   [ a                owl:Restriction ;
                            owl:cardinality  "1"^^xsd:int ;
                            owl:onProperty   prov:pairKey
                          ] ;
        rdfs:subClassOf   [ a                owl:Restriction ;
                            owl:cardinality  "1"^^xsd:int ;
                            owl:onProperty   prov:pairEntity
                          ] ;
        prov:category     "collections" ;
        prov:component    "collections" ;
        prov:constraints  "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition   "A key-entity pair. Part of a prov:Dictionary through prov:hadDictionaryMember. The key is any RDF Literal, the value is a prov:Entity." ;
        prov:dm           "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership"^^xsd:anyURI .

prov:entityOfInfluence
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "entityOfInfluence" ;
        owl:inverseOf     prov:entity .

prov:qualifiedEndOf  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedEndOf" ;
        owl:inverseOf     prov:qualifiedEnd .

prov:Publish  a          owl:Class ;
        rdfs:label       "Publish"@en ;
        rdfs:subClassOf  prov:Activity ;
        prov:definition  "Activity that identifies the publication of a resource"@en .

prov:qualifiedInsertion
        a                   owl:ObjectProperty ;
        rdfs:domain         prov:Dictionary ;
        rdfs:isDefinedBy    prov: ;
        rdfs:label          "qualifiedInsertion" ;
        rdfs:range          prov:Insertion ;
        rdfs:subPropertyOf  prov:qualifiedDerivation ;
        prov:category       "collections" ;
        prov:component      "collections" ;
        prov:constraints    "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition     "The dictionary was derived from the other by insertion. prov:qualifiedInsertion shows details of the insertion, in particular the inserted key-entity pairs." ;
        prov:dm             "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion"^^xsd:anyURI ;
        prov:n              "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion"^^xsd:anyURI .

[ a                      owl:Axiom ;
  owl:annotatedProperty  rdfs:domain ;
  owl:annotatedSource    prov:wasInfluencedBy ;
  owl:annotatedTarget    [ a            owl:Class ;
                           owl:unionOf  ( prov:Activity prov:Agent prov:Entity )
                         ] ;
  prov:definition        "influencee: an identifier (o2) for an entity, activity, or agent; " ;
  prov:dm                "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence"
] .

prov:Delegation  a            owl:Class ;
        rdfs:comment          "An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Delegation" ;
        rdfs:subClassOf       prov:AgentInfluence ;
        prov:category         "qualified" ;
        prov:component        "agents-responsibility" ;
        prov:definition       "Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.\n\nFor example, a student acted on behalf of his supervisor, who acted on behalf of the department chair, who acted on behalf of the university; all those agents are responsible in some way for the activity that took place but we do not say explicitly who bears responsibility and to what degree."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-delegation"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:actedOnBehalfOf .

prov:invalidated  a                owl:ObjectProperty ;
        rdfs:domain                prov:Activity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o-inverses#> , <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "invalidated" ;
        rdfs:range                 prov:Entity ;
        rdfs:subPropertyOf         prov:influenced ;
        owl:inverseOf              prov:wasInvalidatedBy ;
        prov:category              "expanded" ;
        prov:component             "entities-activities" ;
        prov:editorialNote         "prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions."@en ;
        prov:inverse               "wasInvalidatedBy" ;
        prov:sharesDefinitionWith  prov:Invalidation .

<http://www.w3.org/ns/prov-aq#>
        a               owl:Ontology ;
        rdfs:comment    "This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). \n\nIf you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/). All feedback is welcome."@en , "0.2"^^xsd:string ;
        rdfs:label      "PROV Access and Query Ontology"@en ;
        rdfs:seeAlso    <http://www.w3.org/TR/prov-aq/> , prov: ;
        owl:versionIRI  <http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/> .

<http://www.w3.org/ns/prov-links#>
        a                      owl:Ontology ;
        rdfs:comment           "This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/\n). All feedback is welcome."@en ;
        rdfs:label             "W3C PROV Linking Across Provenance Bundles Ontology (PROV-LINKS)"@en ;
        rdfs:seeAlso           <http://www.w3.org/ns/prov> , <http://www.w3.org/TR/prov-links/> ;
        owl:imports            <http://www.w3.org/ns/prov-o#> ;
        owl:versionIRI         <http://www.w3.org/ns/prov-links-20130430> ;
        owl:versionInfo        "Working Group Note version 2013-04-30"@en ;
        prov:specializationOf  <http://www.w3.org/ns/prov-links> .

prov:qualifiedCommunicationOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedCommunicationOf" ;
        owl:inverseOf     prov:qualifiedCommunication .

prov:wasMemberOf  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "wasMemberOf" ;
        owl:inverseOf     prov:hadMember .

prov:inverse  a           owl:AnnotationProperty ;
        rdfs:comment      "PROV-O does not define all property inverses. The directionalities defined in PROV-O should be given preference over those not defined. However, if users wish to name the inverse of a PROV-O property, the local name given by prov:inverse should be used."@en ;
        rdfs:isDefinedBy  prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:seeAlso      <http://www.w3.org/TR/prov-o/#names-of-inverse-properties> .

prov:aq  a                  owl:AnnotationProperty ;
        rdfs:isDefinedBy    prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:subPropertyOf  rdfs:seeAlso .

prov:Agent  a             owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Agent" ;
        owl:disjointWith  prov:InstantaneousEvent ;
        prov:category     "starting-point" ;
        prov:component    "agents-responsibility" ;
        prov:definition   "An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. "@en ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent"^^xsd:anyURI .

prov:wasInfluencedBy  a            owl:ObjectProperty ;
        rdfs:comment               "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>." , "Because prov:wasInfluencedBy is a broad relation, its more specific subproperties (e.g. prov:wasInformedBy, prov:actedOnBehalfOf, prov:wasEndedBy, etc.) should be used when applicable."@en ;
        rdfs:domain                [ a            owl:Class ;
                                     owl:unionOf  ( prov:Activity prov:Agent prov:Entity )
                                   ] ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o-inverses#> , <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "wasInfluencedBy" ;
        rdfs:range                 [ a            owl:Class ;
                                     owl:unionOf  ( prov:Activity prov:Agent prov:Entity )
                                   ] ;
        owl:inverseOf              prov:influenced ;
        prov:category              "qualified" ;
        prov:component             "agents-responsibility" ;
        prov:editorialNote         "The sub-properties of prov:wasInfluencedBy can be elaborated in more detail using the Qualification Pattern. For example, the binary relation :baking prov:used :spoon can be qualified by asserting :baking prov:qualifiedUsage [ a prov:Usage; prov:entity :spoon; prov:atLocation :kitchen ] .\n\nSubproperties of prov:wasInfluencedBy may also be asserted directly without being qualified.\n\nprov:wasInfluencedBy should not be used without also using one of its subproperties. \n"@en ;
        prov:inverse               "influenced" ;
        prov:qualifiedForm         prov:Influence , prov:qualifiedInfluence ;
        prov:sharesDefinitionWith  prov:Influence .

prov:qualifiedDelegation
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility;  prov:agent :ag; :foo :bar ]."@en ;
        rdfs:domain                prov:Agent ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedDelegation" ;
        rdfs:range                 prov:Delegation ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "agents-responsibility" ;
        prov:inverse               "qualifiedDelegationOf" ;
        prov:sharesDefinitionWith  prov:Delegation ;
        prov:unqualifiedForm       prov:actedOnBehalfOf .

prov:qualifiedAssociation
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association;  prov:agent :ag; :foo :bar ]."@en ;
        rdfs:domain                prov:Activity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedAssociation" ;
        rdfs:range                 prov:Association ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "agents-responsibility" ;
        prov:inverse               "qualifiedAssociationOf" ;
        prov:sharesDefinitionWith  prov:Association ;
        prov:unqualifiedForm       prov:wasAssociatedWith .

prov:influencer  a              owl:ObjectProperty ;
        rdfs:comment            "Subproperties of prov:influencer are used to cite the object of an unqualified PROV-O triple whose predicate is a subproperty of prov:wasInfluencedBy (e.g. prov:used, prov:wasGeneratedBy). prov:influencer is used much like rdf:object is used."@en ;
        rdfs:domain             prov:Influence ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "influencer" ;
        rdfs:range              owl:Thing ;
        prov:category           "qualified" ;
        prov:dm                 "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence"^^xsd:anyURI ;
        prov:editorialNote      "This property and its subproperties are used in the same way as the rdf:object property, i.e. to reference the object of an unqualified prov:wasInfluencedBy or prov:influenced triple."@en ;
        prov:editorsDefinition  "This property is used as part of the qualified influence pattern. Subclasses of prov:Influence use these subproperties to reference the resource (Entity, Agent, or Activity) whose influence is being qualified."@en ;
        prov:inverse            "hadInfluence" .

prov:editorsDefinition
        a                   owl:AnnotationProperty ;
        rdfs:comment        "When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one."@en ;
        rdfs:isDefinedBy    prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:subPropertyOf  prov:definition .

prov:order  a             owl:AnnotationProperty ;
        rdfs:comment      "The position that this OWL term should be listed within documentation. The scope of the documentation (e.g., among all terms, among terms within a prov:category, among properties applying to a particular class, etc.) is unspecified."@en ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> .

prov:hadDelegate  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "hadDelegate" ;
        owl:inverseOf     prov:actedOnBehalfOf .

prov:Start  a                 owl:Class ;
        rdfs:comment          "An instance of prov:Start provides additional descriptions about the binary prov:wasStartedBy relation from some started prov:Activity to an prov:Entity that started it. For example, :foot_race prov:wasStartedBy :bang; prov:qualifiedStart [ a prov:Start; prov:entity :bang; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ] ."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Start" ;
        rdfs:subClassOf       prov:EntityInfluence , prov:InstantaneousEvent ;
        prov:category         "qualified" ;
        prov:component        "entities-activities" ;
        prov:constraints      "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition       "Start is when an activity is deemed to have been started by an entity, known as trigger. The activity did not exist before its start. Any usage, generation, or invalidation involving an activity follows the activity's start. A start may refer to a trigger entity that set off the activity, or to an activity, known as starter, that generated the trigger."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Start"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Start"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasStartedBy .

prov:qualifiedQuotationOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedQuotationOf" ;
        owl:inverseOf     prov:qualifiedQuotation .

prov:generatedAsDerivation
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "generatedAsDerivation" ;
        owl:inverseOf     prov:hadGeneration .

prov:Accept  a           owl:Class ;
        rdfs:label       "Accept"@en ;
        rdfs:subClassOf  prov:Activity ;
        prov:definition  "Activity that identifies the acceptance of a resource (e.g., an article in a conference)"@en .

prov:wasPlanOf  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "wasPlanOf" ;
        owl:inverseOf     prov:hadPlan .

prov:wasActivityOfInfluence
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "wasActivityOfInfluence" ;
        owl:inverseOf     prov:hadActivity .

prov:wasAttributedTo  a         owl:ObjectProperty ;
        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:label              "wasAttributedTo" ;
        rdfs:range              prov:Agent ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:propertyChainAxiom  ( prov:qualifiedAttribution prov:agent ) ;
        prov:category           "starting-point" ;
        prov:component          "agents-responsibility" ;
        prov:definition         "Attribution is the ascribing of an entity to an agent."@en ;
        prov:inverse            "contributed" ;
        prov:qualifiedForm      prov:Attribution , prov:qualifiedAttribution .

prov:Influence  a             owl:Class ;
        rdfs:comment          "An instance of prov:Influence provides additional descriptions about the binary prov:wasInfluencedBy relation from some influenced Activity, Entity, or Agent to the influencing Activity, Entity, or Agent. For example, :stomach_ache prov:wasInfluencedBy :spoon; prov:qualifiedInfluence [ a prov:Influence; prov:entity :spoon; :foo :bar ] . Because prov:Influence is a broad relation, the more specific relations (Communication, Delegation, End, etc.) should be used when applicable."@en , "Because prov:Influence is a broad relation, its most specific subclasses (e.g. prov:Communication, prov:Delegation, prov:End, prov:Revision, etc.) should be used when applicable."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Influence" ;
        prov:category         "qualified" ;
        prov:component        "derivations" ;
        prov:definition       "Influence is the capacity of an entity, activity, or agent to have an effect on the character, development, or behavior of another by means of usage, start, end, generation, invalidation, communication, derivation, attribution, association, or delegation."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-influence"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasInfluencedBy .

prov:Usage  a                 owl:Class ;
        rdfs:comment          "An instance of prov:Usage provides additional descriptions about the binary prov:used relation from some prov:Activity to an prov:Entity that it used. For example, :keynote prov:used :podium; prov:qualifiedUsage [ a prov:Usage; prov:entity :podium; :foo :bar ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Usage" ;
        rdfs:subClassOf       prov:InstantaneousEvent , prov:EntityInfluence ;
        prov:category         "qualified" ;
        prov:component        "entities-activities" ;
        prov:constraints      "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition       "Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Usage"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Usage"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:used .

prov:Association  a           owl:Class ;
        rdfs:comment          "An instance of prov:Association provides additional descriptions about the binary prov:wasAssociatedWith relation from an prov:Activity to some prov:Agent that had some responsiblity for it. For example, :baking prov:wasAssociatedWith :baker; prov:qualifiedAssociation [ a prov:Association; prov:agent :baker; :foo :bar ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Association" ;
        rdfs:subClassOf       prov:AgentInfluence ;
        prov:category         "qualified" ;
        prov:component        "agents-responsibility" ;
        prov:definition       "An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasAssociatedWith .

prov:wasEndedBy  a              owl:ObjectProperty ;
        rdfs:comment            "End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity."@en ;
        rdfs:domain             prov:Activity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "wasEndedBy" ;
        rdfs:range              prov:Entity ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:propertyChainAxiom  ( prov:qualifiedEnd prov:entity ) ;
        prov:category           "expanded" ;
        prov:component          "entities-activities" ;
        prov:inverse            "ended" ;
        prov:qualifiedForm      prov:qualifiedEnd , prov:End .

owl:topObjectProperty
        a       owl:ObjectProperty .

prov:activity  a                owl:ObjectProperty ;
        rdfs:domain             prov:ActivityInfluence ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "activity" ;
        rdfs:range              prov:Activity ;
        rdfs:subPropertyOf      prov:influencer ;
        prov:category           "qualified" ;
        prov:editorialNote      "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple."@en ;
        prov:editorsDefinition  "The prov:activity property references an prov:Activity which influenced a resource. This property applies to an prov:ActivityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent." ;
        prov:inverse            "activityOfInfluence" .

prov:Entity  a            owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Entity" ;
        owl:disjointWith  prov:InstantaneousEvent ;
        prov:category     "starting-point" ;
        prov:component    "entities-activities" ;
        prov:constraints  "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition   "An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. "@en ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-entity"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity"^^xsd:anyURI .

prov:definition  a        owl:AnnotationProperty ;
        rdfs:comment      "A definition quoted from PROV-DM or PROV-CONSTRAINTS that describes the concept expressed with this OWL term."@en ;
        rdfs:isDefinedBy  prov: , <http://www.w3.org/ns/prov-o#> .

prov:qualifiedAssociationOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedAssociationOf" ;
        owl:inverseOf     prov:qualifiedAssociation .

prov:pairEntity  a        owl:FunctionalProperty , owl:ObjectProperty ;
        rdfs:domain       prov:KeyEntityPair ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "pairKey" ;
        rdfs:range        prov:Entity ;
        prov:category     "collections" ;
        prov:component    "collections" ;
        prov:constraints  "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition   "The value of a KeyEntityPair." ;
        prov:dm           "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership"^^xsd:anyURI .

prov:specializationOf
        a                   owl:ObjectProperty , owl:AnnotationProperty ;
        rdfs:domain         prov:Entity ;
        rdfs:isDefinedBy    prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:label          "specializationOf" ;
        rdfs:range          prov:Entity ;
        rdfs:seeAlso        prov:alternateOf ;
        rdfs:subPropertyOf  owl:topObjectProperty , prov:alternateOf ;
        prov:category       "expanded" ;
        prov:component      "alternate" ;
        prov:constraints    "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig"^^xsd:anyURI , "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition     "An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity."@en ;
        prov:dm             "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization"^^xsd:anyURI , "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-specialization"^^xsd:anyURI ;
        prov:inverse        "generalizationOf" ;
        prov:n              "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-specialization"^^xsd:anyURI , "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization"^^xsd:anyURI .

[ a                      owl:Axiom ;
  rdfs:comment           "Derivation is a particular case of trace (see http://www.w3.org/TR/prov-dm/#term-trace), since it links an entity to another entity that contributed to its existence." ;
  owl:annotatedProperty  rdfs:subPropertyOf ;
  owl:annotatedSource    prov:wasDerivedFrom ;
  owl:annotatedTarget    prov:wasInfluencedBy
] .

prov:invalidatedAtTime
        a                   owl:DatatypeProperty ;
        rdfs:comment        "The time at which an entity was invalidated (i.e., no longer usable)."@en ;
        rdfs:domain         prov:Entity ;
        rdfs:isDefinedBy    <http://www.w3.org/ns/prov-o#> ;
        rdfs:label          "invalidatedAtTime" ;
        rdfs:range          xsd:dateTime ;
        prov:category       "expanded" ;
        prov:component      "entities-activities" ;
        prov:editorialNote  "It is the intent that the property chain holds: (prov:qualifiedInvalidation o prov:atTime) rdfs:subPropertyOf prov:invalidatedAtTime."@en ;
        prov:qualifiedForm  prov:atTime , prov:Invalidation .

prov:Bundle  a            owl:Class ;
        rdfs:comment      "Note that there are kinds of bundles (e.g. handwritten letters, audio recordings, etc.) that are not expressed in PROV-O, but can be still be described by PROV-O."@en ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Bundle" ;
        rdfs:subClassOf   prov:Entity ;
        prov:category     "expanded" ;
        prov:definition   "A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed."@en ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-bundle-entity"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-bundle-declaration"^^xsd:anyURI .

prov:qualifiedSourceOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedSourceOf" ;
        owl:inverseOf     prov:qualifiedPrimarySource .

prov:EmptyCollection  a   owl:NamedIndividual , owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "EmptyCollection"@en ;
        rdfs:subClassOf   prov:Collection ;
        prov:category     "expanded" ;
        prov:component    "collections" ;
        prov:definition   "An empty collection is a collection without members."@en .

prov:hadUsage  a                   owl:ObjectProperty ;
        rdfs:comment               "The _optional_ Usage involved in an Entity's Derivation."@en ;
        rdfs:domain                prov:Derivation ;
        rdfs:isDefinedBy           prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "hadUsage" ;
        rdfs:range                 prov:Usage ;
        prov:category              "qualified" ;
        prov:component             "derivations" ;
        prov:inverse               "wasUsedInDerivation" ;
        prov:sharesDefinitionWith  prov:Usage .

rdfs:seeAlso  a       owl:AnnotationProperty ;
        rdfs:comment  ""@en .

prov:has_provenance  a    owl:ObjectProperty ;
        rdfs:comment      "Indicates a provenance-URI for a resource; the resource identified by this property presents a provenance record about its subject or anchor resource."@en ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "has_provenance" ;
        prov:aq           "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html"^^xsd:anyURI ;
        prov:category     "access-and-query" ;
        prov:inverse      "provenanceOf" .

prov:qualifiedEnd  a               owl:ObjectProperty ;
        rdfs:comment               "If this Activity prov:wasEndedBy Entity :e1, then it can qualify how it was ended using prov:qualifiedEnd [ a prov:End;  prov:entity :e1; :foo :bar ]."@en ;
        rdfs:domain                prov:Activity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedEnd" ;
        rdfs:range                 prov:End ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "entities-activities" ;
        prov:inverse               "qualifiedEndOf" ;
        prov:sharesDefinitionWith  prov:End ;
        prov:unqualifiedForm       prov:wasEndedBy .

prov:sharesDefinitionWith
        a                   owl:AnnotationProperty ;
        rdfs:isDefinedBy    prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:subPropertyOf  rdfs:seeAlso .

prov:used  a                    owl:ObjectProperty ;
        rdfs:comment            "A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven ."@en ;
        rdfs:domain             prov:Activity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "used" ;
        rdfs:range              prov:Entity ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:propertyChainAxiom  ( prov:qualifiedUsage prov:entity ) ;
        prov:category           "starting-point" ;
        prov:component          "entities-activities" ;
        prov:inverse            "wasUsedBy" ;
        prov:qualifiedForm      prov:Usage , prov:qualifiedUsage .

prov:agentOfInfluence
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "agentOfInfluence" ;
        owl:inverseOf     prov:agent .

prov:ServiceDescription
        a                 owl:Class ;
        rdfs:comment      "Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments." ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "ServiceDescription" ;
        rdfs:subClassOf   prov:SoftwareAgent ;
        prov:aq           "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery"^^xsd:anyURI ;
        prov:category     "access-and-query" .

prov:Dictionary  a        owl:Class ;
        rdfs:comment      "This concept allows for the provenance of the dictionary, but also of its constituents to be expressed. Such a notion of dictionary corresponds to a wide variety of concrete data structures, such as a maps or associative arrays." , "A given dictionary forms a given structure for its members. A different structure (obtained either by insertion or removal of members) constitutes a different dictionary." ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "Dictionary" ;
        prov:category     "collections" ;
        prov:component    "collections" ;
        prov:constraints  "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition   "A dictionary is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the dictionary." ;
        prov:dm           "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary"^^xsd:anyURI .

prov:agent  a                   owl:ObjectProperty ;
        rdfs:domain             prov:AgentInfluence ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "agent" ;
        rdfs:range              prov:Agent ;
        rdfs:subPropertyOf      prov:influencer ;
        prov:category           "qualified" ;
        prov:editorialNote      "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple."@en ;
        prov:editorsDefinition  "The prov:agent property references an prov:Agent which influenced a resource. This property applies to an prov:AgentInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent."@en ;
        prov:inverse            "agentOfInfluence" .

prov:qualifiedCommunication
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Activity prov:wasInformedBy Activity :a, then it can qualify how it was influenced using prov:qualifiedCommunication [ a prov:Communication;  prov:activity :a; :foo :bar ]."@en ;
        rdfs:domain                prov:Activity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedCommunication" ;
        rdfs:range                 prov:Communication ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "entities-activities" ;
        prov:inverse               "qualifiedCommunicationOf" ;
        prov:qualifiedForm         prov:Communication ;
        prov:sharesDefinitionWith  prov:Communication .

prov:wasRoleIn  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "wasRoleIn" ;
        owl:inverseOf     prov:hadRole .

prov:qualifiedQuotation
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation;  prov:entity :e; :foo :bar ]."@en ;
        rdfs:domain                prov:Entity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedQuotation" ;
        rdfs:range                 prov:Quotation ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "derivations" ;
        prov:inverse               "qualifiedQuotationOf" ;
        prov:sharesDefinitionWith  prov:Quotation ;
        prov:unqualifiedForm       prov:wasQuotedFrom .

prov:atTime  a                     owl:DatatypeProperty ;
        rdfs:comment               "The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime."@en ;
        rdfs:domain                prov:InstantaneousEvent ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "atTime" ;
        rdfs:range                 xsd:dateTime ;
        prov:category              "qualified" ;
        prov:component             "entities-activities" ;
        prov:sharesDefinitionWith  prov:InstantaneousEvent ;
        prov:unqualifiedForm       prov:invalidatedAtTime , prov:startedAtTime , prov:generatedAtTime , prov:endedAtTime .

prov:hadRole  a                    owl:ObjectProperty ;
        rdfs:comment               "The _optional_ Role that an Entity assumed in the context of an Activity. For example, :baking prov:used :spoon; prov:qualified [ a prov:Usage; prov:entity :spoon; prov:hadRole roles:mixing_implement ]."@en , "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>." ;
        rdfs:domain                prov:Influence ;
        rdfs:domain                [ a            owl:Class ;
                                     owl:unionOf  ( prov:Association prov:InstantaneousEvent )
                                   ] ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "hadRole" ;
        rdfs:range                 prov:Role ;
        prov:category              "qualified" ;
        prov:component             "agents-responsibility" ;
        prov:editorsDefinition     "prov:hadRole references the Role (i.e. the function of an entity with respect to an activity), in the context of an instantaneous usage, generation, association, start, and end."@en ;
        prov:inverse               "wasRoleIn" ;
        prov:sharesDefinitionWith  prov:Role .

prov:wasQuotedFrom  a           owl:ObjectProperty ;
        rdfs:comment            "An entity is derived from an original entity by copying, or 'quoting', some or all of it."@en ;
        rdfs:domain             prov:Entity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "wasQuotedFrom" ;
        rdfs:range              prov:Entity ;
        rdfs:subPropertyOf      prov:wasDerivedFrom ;
        owl:propertyChainAxiom  ( prov:qualifiedQuotation prov:entity ) ;
        prov:category           "expanded" ;
        prov:component          "derivations" ;
        prov:inverse            "quotedAs" ;
        prov:qualifiedForm      prov:qualifiedQuotation , prov:Quotation .

prov:unqualifiedForm  a     owl:AnnotationProperty ;
        rdfs:comment        "Classes and properties used to qualify relationships are annotated with prov:unqualifiedForm to indicate the property used to assert an unqualified provenance relation."@en ;
        rdfs:isDefinedBy    prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:subPropertyOf  rdfs:seeAlso .

prov:wasGeneratedBy  a          owl:ObjectProperty ;
        rdfs:domain             prov:Entity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o-inverses#> , <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "wasGeneratedBy" ;
        rdfs:range              prov:Activity ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:inverseOf           prov:generated ;
        owl:propertyChainAxiom  ( prov:qualifiedGeneration prov:activity ) ;
        prov:category           "starting-point" ;
        prov:component          "entities-activities" ;
        prov:inverse            "generated" ;
        prov:qualifiedForm      prov:Generation , prov:qualifiedGeneration .

prov:qualifiedForm  a       owl:AnnotationProperty ;
        rdfs:comment        "This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it. \n\nExample annotation:\n\n    prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation .\n\nThen this unqualified assertion:\n\n    :entity1 prov:wasGeneratedBy :activity1 .\n\ncan be qualified by adding:\n\n   :entity1 prov:qualifiedGeneration :entity1Gen .\n   :entity1Gen \n       a prov:Generation, prov:Influence;\n       prov:activity :activity1;\n       :customValue 1337 .\n\nNote how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class."@en ;
        rdfs:isDefinedBy    prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:subPropertyOf  rdfs:seeAlso .

[ a                      owl:Axiom ;
  rdfs:comment           "Quotation is a particular case of derivation (see http://www.w3.org/TR/prov-dm/#term-quotation) in which an entity is derived from an original entity by copying, or \"quoting\", some or all of it. " ;
  owl:annotatedProperty  rdfs:subPropertyOf ;
  owl:annotatedSource    prov:wasQuotedFrom ;
  owl:annotatedTarget    prov:wasDerivedFrom
] .

prov:qualifiedUsage  a             owl:ObjectProperty ;
        rdfs:comment               "If this Activity prov:used Entity :e, then it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; prov:entity :e; :foo :bar ]."@en ;
        rdfs:domain                prov:Activity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedUsage" ;
        rdfs:range                 prov:Usage ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "entities-activities" ;
        prov:inverse               "qualifiedUsingActivity" ;
        prov:sharesDefinitionWith  prov:Usage ;
        prov:unqualifiedForm       prov:used .

prov:wasInformedBy  a           owl:ObjectProperty ;
        rdfs:comment            "An activity a2 is dependent on or informed by another activity a1, by way of some unspecified entity that is generated by a1 and used by a2."@en ;
        rdfs:domain             prov:Activity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "wasInformedBy" ;
        rdfs:range              prov:Activity ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:propertyChainAxiom  ( prov:qualifiedCommunication prov:activity ) ;
        prov:category           "starting-point" ;
        prov:component          "entities-activities" ;
        prov:inverse            "informed" ;
        prov:qualifiedForm      prov:qualifiedCommunication , prov:Communication .

prov:hadMember  a                  owl:ObjectProperty ;
        rdfs:domain                prov:Collection ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "hadMember" ;
        rdfs:range                 prov:Entity ;
        rdfs:subPropertyOf         prov:wasInfluencedBy ;
        prov:category              "expanded" ;
        prov:component             "expanded" ;
        prov:inverse               "wasMemberOf" ;
        prov:sharesDefinitionWith  prov:Collection .

prov:qualifiedInvalidation
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Entity prov:wasInvalidatedBy Activity :a, then it can qualify how it was invalidated using prov:qualifiedInvalidation [ a prov:Invalidation;  prov:activity :a; :foo :bar ]."@en ;
        rdfs:domain                prov:Entity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedInvalidation" ;
        rdfs:range                 prov:Invalidation ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "entities-activities" ;
        prov:inverse               "qualifiedInvalidationOf" ;
        prov:sharesDefinitionWith  prov:Invalidation ;
        prov:unqualifiedForm       prov:wasInvalidatedBy .

prov:Generation  a            owl:Class ;
        rdfs:comment          "An instance of prov:Generation provides additional descriptions about the binary prov:wasGeneratedBy relation from a generated prov:Entity to the prov:Activity that generated it. For example, :cake prov:wasGeneratedBy :baking; prov:qualifiedGeneration [ a prov:Generation; prov:activity :baking; :foo :bar ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Generation" ;
        rdfs:subClassOf       prov:ActivityInfluence , prov:InstantaneousEvent ;
        prov:category         "qualified" ;
        prov:component        "entities-activities" ;
        prov:constraints      "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition       "Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Generation"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Generation"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasGeneratedBy .

[ a                      owl:Axiom ;
  rdfs:comment           "A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections."@en ;
  owl:annotatedProperty  rdfs:range ;
  owl:annotatedSource    prov:hadMember ;
  owl:annotatedTarget    prov:Entity ;
  prov:dm                "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection"
] .

prov:constraints  a         owl:AnnotationProperty ;
        rdfs:comment        "A reference to the principal section of the PROV-CONSTRAINTS document that describes this concept."@en ;
        rdfs:isDefinedBy    prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:subPropertyOf  rdfs:seeAlso .

prov:actedOnBehalfOf  a         owl:ObjectProperty ;
        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. "@en ;
        rdfs:domain             prov:Agent ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "actedOnBehalfOf" ;
        rdfs:range              prov:Agent ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:propertyChainAxiom  ( prov:qualifiedDelegation prov:agent ) ;
        prov:category           "starting-point" ;
        prov:component          "agents-responsibility" ;
        prov:inverse            "hadDelegate" ;
        prov:qualifiedForm      prov:qualifiedDelegation , prov:Delegation .

prov:derivedByInsertionFrom
        a                   owl:ObjectProperty ;
        rdfs:domain         prov:Dictionary ;
        rdfs:isDefinedBy    prov: ;
        rdfs:label          "derivedByInsertionFrom" ;
        rdfs:range          prov:Dictionary ;
        rdfs:subPropertyOf  prov:wasDerivedFrom ;
        prov:category       "collections" ;
        prov:component      "collections" ;
        prov:constraints    "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition     "The dictionary was derived from the other by insertion. prov:qualifiedInsertion shows details of the insertion, in particular the inserted key-entity pairs." ;
        prov:dm             "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion"^^xsd:anyURI ;
        prov:n              "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion"^^xsd:anyURI .

prov:value  a               owl:DatatypeProperty ;
        rdfs:domain         prov:Entity ;
        rdfs:isDefinedBy    <http://www.w3.org/ns/prov-o#> ;
        rdfs:label          "value" ;
        prov:category       "expanded" ;
        prov:component      "entities-activities" ;
        prov:definition     "Provides a value that is a direct representation of an entity."@en ;
        prov:dm             "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-value"^^xsd:anyURI ;
        prov:editorialNote  "This property serves the same purpose as rdf:value, but has been reintroduced to avoid some of the definitional ambiguity in the RDF specification (specifically, 'may be used in describing structured values')."@en , "The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue" .

prov:qualifiedStartOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedStartOf" ;
        owl:inverseOf     prov:qualifiedStart .

prov:qualifiedGeneration
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Activity prov:generated Entity :e, then it can qualify how it performed the Generation using prov:qualifiedGeneration [ a prov:Generation;  prov:entity :e; :foo :bar ]."@en ;
        rdfs:domain                prov:Entity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedGeneration" ;
        rdfs:range                 prov:Generation ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "entities-activities" ;
        prov:inverse               "qualifiedGenerationOf" ;
        prov:sharesDefinitionWith  prov:Generation ;
        prov:unqualifiedForm       prov:wasGeneratedBy .

prov:ActivityInfluence
        a                       owl:Class ;
        rdfs:comment            "It is not recommended that the type ActivityInfluence be asserted without also asserting one of its more specific subclasses."@en , "ActivityInfluence provides additional descriptions of an Activity's binary influence upon any other kind of resource. Instances of ActivityInfluence use the prov:activity property to cite the influencing Activity."@en ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "ActivityInfluence" ;
        rdfs:seeAlso            prov:activity ;
        rdfs:subClassOf         prov:Influence ;
        rdfs:subClassOf         [ a                   owl:Restriction ;
                                  owl:maxCardinality  "0"^^xsd:nonNegativeInteger ;
                                  owl:onProperty      prov:hadActivity
                                ] ;
        owl:disjointWith        prov:EntityInfluence ;
        prov:category           "qualified" ;
        prov:editorsDefinition  "ActivitiyInfluence is the capacity of an activity to have an effect on the character, development, or behavior of another by means of generation, invalidation, communication, or other."@en .

prov:RightsAssignment
        a                owl:Class ;
        rdfs:label       "RightsAssignment"@en ;
        rdfs:subClassOf  prov:Activity ;
        prov:definition  "Activity that identifies the rights assignment of a resource."@en .

prov:Contribute  a       owl:Class ;
        rdfs:label       "Contribute\n"@en ;
        rdfs:subClassOf  prov:Activity ;
        prov:definition  "Activity that identifies any contribution of an agent to a resource. "@en .

prov:qualifiedAttribution
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution;  prov:agent :ag; :foo :bar ]."@en ;
        rdfs:domain                prov:Entity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedAttribution" ;
        rdfs:range                 prov:Attribution ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "agents-responsibility" ;
        prov:inverse               "qualifiedAttributionOf" ;
        prov:sharesDefinitionWith  prov:Attribution ;
        prov:unqualifiedForm       prov:wasAttributedTo .

prov:startedAtTime  a       owl:DatatypeProperty ;
        rdfs:comment        "The time at which an activity started. See also prov:endedAtTime."@en ;
        rdfs:domain         prov:Activity ;
        rdfs:isDefinedBy    <http://www.w3.org/ns/prov-o#> ;
        rdfs:label          "startedAtTime" ;
        rdfs:range          xsd:dateTime ;
        prov:category       "starting-point" ;
        prov:component      "entities-activities" ;
        prov:editorialNote  "It is the intent that the property chain holds: (prov:qualifiedStart o prov:atTime) rdfs:subPropertyOf prov:startedAtTime."@en ;
        prov:qualifiedForm  prov:Start , prov:atTime .

prov:started  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "started" ;
        owl:inverseOf     prov:wasStartedBy .

prov:Revision  a              owl:Class ;
        rdfs:comment          "An instance of prov:Revision provides additional descriptions about the binary prov:wasRevisionOf relation from some newer prov:Entity to an earlier prov:Entity. For example, :draft_2 prov:wasRevisionOf :draft_1; prov:qualifiedRevision [ a prov:Revision; prov:entity :draft_1; :foo :bar ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Revision" ;
        rdfs:subClassOf       prov:Derivation ;
        prov:category         "qualified" ;
        prov:component        "derivations" ;
        prov:definition       "A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-revision"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Revision"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasRevisionOf .

prov:editorialNote  a     owl:AnnotationProperty ;
        rdfs:comment      "A note by the OWL development team about how this term expresses the PROV-DM concept, or how it should be used in context of semantic web or linked data."@en ;
        rdfs:isDefinedBy  prov: , <http://www.w3.org/ns/prov-o#> .

prov:informed  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "informed" ;
        owl:inverseOf     prov:wasInformedBy .

prov:Organization  a      owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Organization" ;
        rdfs:subClassOf   prov:Agent ;
        prov:category     "expanded" ;
        prov:component    "agents-responsibility" ;
        prov:definition   "An organization is a social or legal institution such as a company, society, etc." ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types"^^xsd:anyURI .

prov:Replace  a          owl:Class ;
        rdfs:label       "Replace"@en ;
        rdfs:subClassOf  prov:Activity ;
        prov:definition  "Activity that identifies the replacement of a resource."@en .

prov:contributed  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "contributed" ;
        owl:inverseOf     prov:wasAttributedTo .

prov:hadRevision  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "hadRevision" ;
        owl:inverseOf     prov:wasRevisionOf .

prov:qualifiedDerivation
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Entity prov:wasDerivedFrom Entity :e, then it can qualify how it was derived using prov:qualifiedDerivation [ a prov:Derivation;  prov:entity :e; :foo :bar ]."@en ;
        rdfs:domain                prov:Entity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedDerivation" ;
        rdfs:range                 prov:Derivation ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "derivations" ;
        prov:inverse               "qualifiedDerivationOf" ;
        prov:sharesDefinitionWith  prov:Derivation ;
        prov:unqualifiedForm       prov:wasDerivedFrom .

prov:AgentInfluence  a          owl:Class ;
        rdfs:comment            "It is not recommended that the type AgentInfluence be asserted without also asserting one of its more specific subclasses."@en , "AgentInfluence provides additional descriptions of an Agent's binary influence upon any other kind of resource. Instances of AgentInfluence use the prov:agent property to cite the influencing Agent."@en ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "AgentInfluence" ;
        rdfs:seeAlso            prov:agent ;
        rdfs:subClassOf         prov:Influence ;
        prov:category           "qualified" ;
        prov:editorsDefinition  "AgentInfluence is the capacity of an agent to have an effect on the character, development, or behavior of another by means of attribution, association, delegation, or other."@en .

prov:Role  a              owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Role" ;
        rdfs:seeAlso      prov:hadRole ;
        prov:category     "qualified" ;
        prov:component    "agents-responsibility" ;
        prov:definition   "A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end."@en ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-role"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute"^^xsd:anyURI .

prov:wasAssociatedWith
        a                       owl:ObjectProperty ;
        rdfs:comment            "An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity."@en ;
        rdfs:domain             prov:Activity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "wasAssociatedWith" ;
        rdfs:range              prov:Agent ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:propertyChainAxiom  ( prov:qualifiedAssociation prov:agent ) ;
        prov:category           "starting-point" ;
        prov:component          "agents-responsibility" ;
        prov:inverse            "wasAssociateFor" ;
        prov:qualifiedForm      prov:Association , prov:qualifiedAssociation .

prov:dictionary  a          owl:ObjectProperty ;
        rdfs:domain         prov:Insertion , prov:Removal ;
        rdfs:isDefinedBy    prov: ;
        rdfs:label          "dictionary" ;
        rdfs:range          prov:Dictionary ;
        rdfs:subPropertyOf  prov:entity ;
        prov:category       "collections" ;
        prov:component      "collections" ;
        prov:constraints    "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition     "The property used by a prov:Insertion and prov:Removal to cite the prov:Dictionary that was prov:derivedByInsertionFrom or prov:derivedByRemovalFrom another dictionary." ;
        prov:dm             "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal"^^xsd:anyURI , "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion"^^xsd:anyURI ;
        prov:n              "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal"^^xsd:anyURI , "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion"^^xsd:anyURI .

prov:SoftwareAgent  a     owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> , prov: ;
        rdfs:label        "SoftwareAgent" ;
        rdfs:subClassOf   owl:Thing , prov:Agent ;
        prov:category     "expanded" ;
        prov:component    "agents-responsibility" ;
        prov:definition   "A software agent is running software."@en ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent"^^xsd:anyURI , "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types"^^xsd:anyURI , "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types"^^xsd:anyURI .

prov:Insertion  a             owl:Class ;
        rdfs:isDefinedBy      prov: ;
        rdfs:label            "Insertion" ;
        rdfs:subClassOf       prov:Derivation ;
        rdfs:subClassOf       [ a                   owl:Restriction ;
                                owl:minCardinality  "1"^^xsd:int ;
                                owl:onProperty      prov:insertedKeyEntityPair
                              ] ;
        rdfs:subClassOf       [ a                owl:Restriction ;
                                owl:cardinality  "1"^^xsd:int ;
                                owl:onProperty   prov:dictionary
                              ] ;
        prov:category         "collections" ;
        prov:component        "collections" ;
        prov:constraints      "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition       "Insertion is a derivation that transforms a dictionary into another, by insertion of one or more key-entity pairs." ;
        prov:dm               "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:derivedByInsertionFrom .

prov:Invalidation  a          owl:Class ;
        rdfs:comment          "An instance of prov:Invalidation provides additional descriptions about the binary prov:wasInvalidatedBy relation from an invalidated prov:Entity to the prov:Activity that invalidated it. For example, :uncracked_egg prov:wasInvalidatedBy :baking; prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :baking; :foo :bar ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Invalidation" ;
        rdfs:subClassOf       prov:ActivityInfluence , prov:InstantaneousEvent ;
        prov:category         "qualified" ;
        prov:component        "entities-activities" ;
        prov:constraints      "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition       "Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation." ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Invalidation"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Invalidation"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasInvalidatedBy .

prov:hadPlan  a                    owl:ObjectProperty ;
        rdfs:comment               "The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification."@en ;
        rdfs:domain                prov:Association ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "hadPlan" ;
        rdfs:range                 prov:Plan ;
        prov:category              "qualified" ;
        prov:component             "agents-responsibility" ;
        prov:inverse               "wasPlanOf" ;
        prov:sharesDefinitionWith  prov:Plan .

prov:n  a                   owl:AnnotationProperty ;
        rdfs:comment        "A reference to the principal section of the PROV-M document that describes this concept."@en , "A reference to the principal section of the PROV-DM document that describes this concept."@en ;
        rdfs:isDefinedBy    prov: , <http://www.w3.org/ns/prov-o#> ;
        rdfs:subPropertyOf  rdfs:seeAlso .

<http://www.w3.org/ns/prov-dictionary#>
        a             owl:Ontology ;
        rdfs:comment  "This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). \r\n\r\nIf you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/). All feedback is welcome."@en ;
        rdfs:label    "W3C PROVenance Interchange Ontology (PROV-O) Dictionary Extension"@en ;
        rdfs:seeAlso  <http://www.w3.org/ns/prov> , <http://www.w3.org/TR/prov-dictionary/> .

prov:pairKey  a           owl:DatatypeProperty , owl:FunctionalProperty ;
        rdfs:domain       prov:KeyEntityPair ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "pairKey" ;
        rdfs:range        rdfs:Literal ;
        prov:category     "collections" ;
        prov:component    "collections" ;
        prov:constraints  "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition   "The key of a KeyEntityPair, which is an element of a prov:Dictionary." ;
        prov:dm           "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership"^^xsd:anyURI .

prov:Person  a            owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Person" ;
        rdfs:subClassOf   prov:Agent ;
        prov:category     "expanded" ;
        prov:component    "agents-responsibility" ;
        prov:definition   "Person agents are people."@en ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types"^^xsd:anyURI .

prov:wasUsedInDerivation
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "wasUsedInDerivation" ;
        owl:inverseOf     prov:hadUsage .

prov:endedAtTime  a         owl:DatatypeProperty ;
        rdfs:comment        "The time at which an activity ended. See also prov:startedAtTime."@en ;
        rdfs:domain         prov:Activity ;
        rdfs:isDefinedBy    <http://www.w3.org/ns/prov-o#> ;
        rdfs:label          "endedAtTime" ;
        rdfs:range          xsd:dateTime ;
        prov:category       "starting-point" ;
        prov:component      "entities-activities" ;
        prov:editorialNote  "It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime."@en ;
        prov:qualifiedForm  prov:End , prov:atTime .

prov:qualifiedRevision
        a                          owl:ObjectProperty ;
        rdfs:comment               "If this Entity prov:wasRevisionOf Entity :e, then it can qualify how it was revised using prov:qualifiedRevision [ a prov:Revision;  prov:entity :e; :foo :bar ]."@en ;
        rdfs:domain                prov:Entity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedRevision" ;
        rdfs:range                 prov:Revision ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "derivations" ;
        prov:inverse               "revisedEntity" ;
        prov:sharesDefinitionWith  prov:Revision ;
        prov:unqualifiedForm       prov:wasRevisionOf .

prov:pingback  a          owl:ObjectProperty ;
        rdfs:comment      "Relates a resource to a provenance pingback service that may receive additional provenance links about the resource."@en ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "provenance pingback" ;
        prov:aq           "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-pingback"^^xsd:anyURI ;
        prov:category     "access-and-query" .

prov:generalizationOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "generalizationOf" ;
        owl:inverseOf     prov:specializationOf .

prov:alternateOf  a       owl:ObjectProperty ;
        rdfs:domain       prov:Entity ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> , <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "alternateOf" ;
        rdfs:range        prov:Entity ;
        rdfs:seeAlso      prov:specializationOf ;
        owl:inverseOf     prov:alternateOf ;
        prov:category     "expanded" ;
        prov:component    "alternate" ;
        prov:constraints  "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition   "Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time."@en ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate"^^xsd:anyURI ;
        prov:inverse      "alternateOf" ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate"^^xsd:anyURI .

prov:mentionOf  a           owl:ObjectProperty ;
        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.\n\nprov: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:label          "mentionOf" ;
        rdfs:range          prov:Entity ;
        rdfs:subPropertyOf  prov:specializationOf ;
        prov:inverse        "hadMention" .

prov:Submit  a           owl:Class ;
        rdfs:label       "Submit"@en ;
        rdfs:subClassOf  prov:Activity ;
        prov:definition  "Activity that identifies the issuance (e.g., publication) of a resource. "@en .

[ a                      owl:Axiom ;
  rdfs:comment           "Attribution is a particular case of trace (see http://www.w3.org/TR/prov-dm/#concept-trace), in the sense that it links an entity to the agent that ascribed it." ;
  owl:annotatedProperty  rdfs:subPropertyOf ;
  owl:annotatedSource    prov:wasAttributedTo ;
  owl:annotatedTarget    prov:wasInfluencedBy ;
  prov:definition        "IF wasAttributedTo(e2,ag1,aAttr) holds, THEN wasInfluencedBy(e2,ag1) also holds. "
] .

prov:derivedByRemovalFrom
        a                   owl:ObjectProperty ;
        rdfs:domain         prov:Dictionary ;
        rdfs:isDefinedBy    prov: ;
        rdfs:label          "derivedByRemovalFrom" ;
        rdfs:range          prov:Dictionary ;
        rdfs:subPropertyOf  prov:wasDerivedFrom ;
        prov:category       "collections" ;
        prov:component      "collections" ;
        prov:constraints    "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition     "The dictionary was derived from the other by removal. prov:qualifiedRemoval shows details of the removal, in particular the removed key-entity pairs." ;
        prov:dm             "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal"^^xsd:anyURI ;
        prov:n              "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal"^^xsd:anyURI .

owl:Thing  a    owl:Class .

prov:ended  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "ended" ;
        owl:inverseOf     prov:wasEndedBy .

prov:hadDerivation  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "hadDerivation" ;
        owl:inverseOf     prov:wasDerivedFrom .

prov:Creator  a          owl:Class ;
        rdfs:label       "Creator"@en ;
        rdfs:subClassOf  prov:Contributor ;
        prov:definition  "Role with the function of creating a resource. The Agent assigned to this role is associated with a Create Activity"@en .

prov:qualifiedUsingActivity
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedUsingActivity" ;
        owl:inverseOf     prov:qualifiedUsage .

prov:Plan  a              owl:Class ;
        rdfs:comment      "There exist no prescriptive requirement on the nature of plans, their representation, the actions or steps they consist of, or their intended goals. Since plans may evolve over time, it may become necessary to track their provenance, so plans themselves are entities. Representing the plan explicitly in the provenance can be useful for various tasks: for example, to validate the execution as represented in the provenance record, to manage expectation failures, or to provide explanations."@en ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Plan" ;
        rdfs:subClassOf   prov:Entity ;
        prov:category     "expanded" , "qualified" ;
        prov:component    "agents-responsibility" ;
        prov:definition   "A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals." ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association"^^xsd:anyURI .

prov:Collection  a        owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Collection" ;
        rdfs:subClassOf   prov:Entity ;
        prov:category     "expanded" ;
        prov:component    "collections" ;
        prov:definition   "A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections."@en ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection"^^xsd:anyURI .

prov:describesService
        a                 owl:ObjectProperty ;
        rdfs:comment      "relates a generic provenance query service resource (type prov:ServiceDescription) to a specific query service description (e.g. a prov:DirectQueryService or a sd:Service)."@en ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "describesService" ;
        prov:aq           "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/rovenance-query-service-description"^^xsd:anyURI ;
        prov:category     "access-and-query" ;
        prov:inverse      "serviceDescribedBy" .

prov:wasStartedBy  a            owl:ObjectProperty ;
        rdfs:comment            "Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity."@en ;
        rdfs:domain             prov:Activity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "wasStartedBy" ;
        rdfs:range              prov:Entity ;
        rdfs:subPropertyOf      prov:wasInfluencedBy ;
        owl:propertyChainAxiom  ( prov:qualifiedStart prov:entity ) ;
        prov:category           "expanded" ;
        prov:component          "entities-activities" ;
        prov:inverse            "started" ;
        prov:qualifiedForm      prov:qualifiedStart , prov:Start .

prov:   a                      owl:Ontology ;
        rdfs:comment           "This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page).\n\nIf you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/\nArchives/Public/public-prov-comments/). All feedback is welcome."@en ;
        rdfs:isDefinedBy       <http://www.w3.org/ns/prov> ;
        rdfs:label             "W3C PROVenance Interchange"@en ;
        rdfs:seeAlso           <http://www.w3.org/TR/prov-o/#names-of-inverse-properties> , <http://www.w3.org/TR/prov-overview/> ;
        owl:imports            <http://www.w3.org/ns/prov-dictionary#> , <http://www.w3.org/ns/prov-o#> , <http://www.w3.org/ns/prov-dc#> , <http://www.w3.org/ns/prov-links#> , <http://www.w3.org/ns/prov-o-inverses#> , <http://www.w3.org/ns/prov-aq#> ;
        owl:versionIRI         <http://www.w3.org/ns/prov-20130430> , <http://www.w3.org/ns/prov-o-inverses-20130430> ;
        prov:specializationOf  <http://www.w3.org/ns/prov-o-inverses> ;
        prov:wasDerivedFrom    <http://www.w3.org/ns/prov-links#> , <http://www.w3.org/ns/prov-dictionary#> , <http://www.w3.org/ns/prov-aq#> , <http://www.w3.org/ns/prov-dc#> , <http://www.w3.org/ns/prov-o-inverses#> , <http://www.w3.org/ns/prov-o-20130430> , <http://www.w3.org/ns/prov-o#> ;
        prov:wasRevisionOf     <http://www.w3.org/ns/prov-20130312> , <http://www.w3.org/ns/prov-o-inverses-20120312> .

prov:Location  a          owl:Class ;
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o#> ;
        rdfs:label        "Location" ;
        rdfs:seeAlso      prov:atLocation ;
        prov:category     "expanded" ;
        prov:definition   "A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth."@en ;
        prov:dm           "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-location"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute"^^xsd:anyURI .

prov:hadDictionaryMember
        a                 owl:ObjectProperty ;
        rdfs:domain       prov:Dictionary ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "hadDictionaryMember" ;
        rdfs:range        prov:KeyEntityPair ;
        prov:category     "collections" ;
        prov:component    "collections" ;
        prov:constraints  "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition   "Describes the key-entity pair that was member of a prov:Dictionary. A dictionary can have multiple members." ;
        prov:dm           "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership"^^xsd:anyURI .

prov:PrimarySource  a         owl:Class ;
        rdfs:comment          "An instance of prov:PrimarySource provides additional descriptions about the binary prov:hadPrimarySource relation from some secondary prov:Entity to an earlier, primary prov:Entity. For example, :blog prov:hadPrimarySource :newsArticle; prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :newsArticle; :foo :bar ] ."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "PrimarySource" ;
        rdfs:subClassOf       prov:Derivation ;
        prov:category         "qualified" ;
        prov:component        "derivations" ;
        prov:definition       "A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.\n\nBecause of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.\n\nA primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:hadPrimarySource .

prov:Quotation  a             owl:Class ;
        rdfs:comment          "An instance of prov:Quotation provides additional descriptions about the binary prov:wasQuotedFrom relation from some taken prov:Entity from an earlier, larger prov:Entity. For example, :here_is_looking_at_you_kid prov:wasQuotedFrom :casablanca_script; prov:qualifiedQuotation [ a prov:Quotation; prov:entity :casablanca_script; :foo :bar ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Quotation" ;
        rdfs:subClassOf       prov:Derivation ;
        prov:category         "qualified" ;
        prov:component        "derivations" ;
        prov:definition       "A quotation is the repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author. Quotation is a particular case of derivation."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-quotation"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-quotation"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasQuotedFrom .

prov:qualifiedStart  a             owl:ObjectProperty ;
        rdfs:comment               "If this Activity prov:wasStartedBy Entity :e1, then it can qualify how it was started using prov:qualifiedStart [ a prov:Start;  prov:entity :e1; :foo :bar ]."@en ;
        rdfs:domain                prov:Activity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedStart" ;
        rdfs:range                 prov:Start ;
        rdfs:subPropertyOf         prov:qualifiedInfluence ;
        prov:category              "qualified" ;
        prov:component             "entities-activities" ;
        prov:inverse               "qualifiedStartOf" ;
        prov:sharesDefinitionWith  prov:Start ;
        prov:unqualifiedForm       prov:wasStartedBy .

rdfs:comment  a           owl:AnnotationProperty ;
        rdfs:comment      ""@en ;
        rdfs:isDefinedBy  prov: , <http://www.w3.org/ns/prov-o#> .

prov:qualifiedAttributionOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedAttributionOf" ;
        owl:inverseOf     prov:qualifiedAttribution .

prov:provenanceUriTemplate
        a                 owl:DatatypeProperty ;
        rdfs:comment      "Relates a provenance service to a URI template string for constructing provenance-URIs."@en ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "provenanceUriTemplate" ;
        prov:aq           "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/"^^xsd:anyURI ;
        prov:category     "access-and-query" .

prov:qualifiedDerivationOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedDerivationOf" ;
        owl:inverseOf     prov:qualifiedDerivation .

prov:Modify  a           owl:Class ;
        rdfs:label       "Modify"@en ;
        rdfs:subClassOf  prov:Activity ;
        prov:definition  "Activity that identifies the modification of a resource. "@en .

prov:Copyright  a        owl:Class ;
        rdfs:label       "Copyright"@en ;
        rdfs:subClassOf  prov:Activity ;
        prov:definition  "Activity that identifies the Copyrighting activity associated to a resource."@en .

prov:atLocation  a                 owl:ObjectProperty ;
        rdfs:comment               "The Location of any resource."@en , "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>." ;
        rdfs:domain                [ a            owl:Class ;
                                     owl:unionOf  ( prov:Activity prov:Agent prov:Entity prov:InstantaneousEvent )
                                   ] ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "atLocation" ;
        rdfs:range                 prov:Location ;
        prov:category              "expanded" ;
        prov:editorialNote         "This property is not functional because the many values could be at a variety of granularies (In this building, in this room, in that chair)."@en , "The naming of prov:atLocation parallels prov:atTime, and is not named prov:hadLocation to avoid conflicting with the convention that prov:had* properties are used on prov:Influence classes."@en ;
        prov:inverse               "locationOf" ;
        prov:sharesDefinitionWith  prov:Location .

prov:insertedKeyEntityPair
        a                 owl:ObjectProperty ;
        rdfs:domain       prov:Insertion ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "insertedKeyEntityPair" ;
        rdfs:range        prov:KeyEntityPair ;
        prov:category     "collections" ;
        prov:component    "collections" ;
        prov:constraints  "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition   "An object property to refer to the prov:KeyEntityPair inserted into a prov:Dictionary." ;
        prov:dm           "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion"^^xsd:anyURI .

prov:qualifiedInfluenceOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedInfluenceOf" ;
        owl:inverseOf     prov:qualifiedInfluence .

prov:qualifiedInfluence
        a                          owl:ObjectProperty ;
        rdfs:comment               "Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable."@en ;
        rdfs:domain                [ a            owl:Class ;
                                     owl:unionOf  ( prov:Activity prov:Agent prov:Entity )
                                   ] ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "qualifiedInfluence" ;
        rdfs:range                 prov:Influence ;
        prov:category              "qualified" ;
        prov:component             "derivations" ;
        prov:inverse               "qualifiedInfluenceOf" ;
        prov:sharesDefinitionWith  prov:Influence ;
        prov:unqualifiedForm       prov:wasInfluencedBy .

prov:hadPrimarySource
        a                       owl:ObjectProperty ;
        rdfs:domain             prov:Entity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "hadPrimarySource" ;
        rdfs:range              prov:Entity ;
        rdfs:subPropertyOf      prov:wasDerivedFrom ;
        owl:propertyChainAxiom  ( prov:qualifiedPrimarySource prov:entity ) ;
        prov:category           "expanded" ;
        prov:component          "derivations" ;
        prov:inverse            "wasPrimarySourceOf" ;
        prov:qualifiedForm      prov:PrimarySource , prov:qualifiedPrimarySource .

prov:wasAssociateFor  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "wasAssociateFor" ;
        owl:inverseOf     prov:wasAssociatedWith .

prov:Publisher  a        owl:Class ;
        rdfs:label       "Publisher"@en ;
        rdfs:subClassOf  prov:Role ;
        prov:definition  "Role with the function of publishing a resource. The Agent assigned to this role is associated with a Publish Activity"@en .

prov:wasRevisionOf  a           owl:ObjectProperty , owl:AnnotationProperty ;
        rdfs:comment            "A revision is a derivation that revises an entity into a revised version."@en ;
        rdfs:domain             prov:Entity ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "wasRevisionOf" ;
        rdfs:range              prov:Entity ;
        rdfs:subPropertyOf      prov:wasDerivedFrom ;
        owl:propertyChainAxiom  ( prov:qualifiedRevision prov:entity ) ;
        prov:category           "expanded" ;
        prov:component          "derivations" ;
        prov:inverse            "hadRevision" ;
        prov:qualifiedForm      prov:Revision , prov:qualifiedRevision .

prov:Create  a           owl:Class ;
        rdfs:label       "Create"@en ;
        rdfs:subClassOf  prov:Contribute ;
        prov:definition  "Activity that identifies the creation of a resource"@en .

prov:influenced  a                 owl:ObjectProperty ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-o-inverses#> , <http://www.w3.org/ns/prov-o#> ;
        rdfs:label                 "influenced" ;
        owl:inverseOf              prov:wasInfluencedBy ;
        prov:category              "expanded" ;
        prov:component             "agents-responsibility" ;
        prov:inverse               "wasInfluencedBy" ;
        prov:sharesDefinitionWith  prov:Influence .

prov:locationOf  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "locationOf" ;
        owl:inverseOf     prov:atLocation .

prov:removedKey  a        owl:DatatypeProperty ;
        rdfs:domain       prov:Removal ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "removedKey" ;
        rdfs:range        rdfs:Literal ;
        prov:category     "collections" ;
        prov:component    "collections" ;
        prov:constraints  "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition   "The key removed in a Removal." ;
        prov:dm           "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal"^^xsd:anyURI .

prov:activityOfInfluence
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "activityOfInfluence" ;
        owl:inverseOf     prov:activity .

prov:has_query_service
        a                 owl:ObjectProperty ;
        rdfs:comment      "Indicates a provenance query service that can access provenance related to its subject or anchor resource."@en ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "hasProvenanceService" ;
        prov:aq           "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/"^^xsd:anyURI ;
        prov:category     "access-and-query" ;
        prov:inverse      "provenanceQueryServiceOf" .

prov:asInBundle  a                 owl:ObjectProperty ;
        rdfs:comment               "prov:asInBundle is used to specify which bundle the general entity of a prov:mentionOf property is described.\n\nWhen :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described."@en ;
        rdfs:domain                prov:Entity ;
        rdfs:isDefinedBy           <http://www.w3.org/ns/prov-links#> ;
        rdfs:label                 "asInBundle" ;
        rdfs:range                 prov:Bundle ;
        prov:inverse               "contextOf" ;
        prov:sharesDefinitionWith  prov:mentionOf .

prov:has_anchor  a        owl:ObjectProperty ;
        rdfs:comment      "Indicates anchor URI for a potentially dynamic resource instance."@en ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "has_anchor" ;
        prov:aq           "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html"^^xsd:anyURI ;
        prov:category     "access-and-query" ;
        prov:inverse      "anchorOf" .

owl:versionInfo  a  owl:AnnotationProperty .

prov:qualifiedInvalidationOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedInvalidationOf" ;
        owl:inverseOf     prov:qualifiedInvalidation .

prov:component  a         owl:AnnotationProperty ;
        rdfs:comment      "Classify prov-o terms into six components according to prov-dm, including 'agents-responsibility', 'alternate', 'annotations', 'collections', 'derivations', and 'entities-activities'. This classification is used so that readers of prov-o specification can find its correspondence with the prov-dm specification."@en ;
        rdfs:isDefinedBy  prov: , <http://www.w3.org/ns/prov-o#> .

rdfs:isDefinedBy  a  owl:AnnotationProperty .

<http://www.w3.org/ns/prov-dc#>
        a             owl:Ontology ;
        rdfs:comment  "This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). \n\nIf you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/). All feedback is welcome."@en ;
        rdfs:label    "Dublin Core extensions of the W3C PROVenance Interchange Ontology (PROV-O) "@en ;
        owl:imports   <http://www.w3.org/ns/prov-o#> .

prov:End  a                   owl:Class ;
        rdfs:comment          "An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "End" ;
        rdfs:subClassOf       prov:EntityInfluence , prov:InstantaneousEvent ;
        prov:category         "qualified" ;
        prov:component        "entities-activities" ;
        prov:constraints      "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition       "End is when an activity is deemed to have been ended by an entity, known as trigger. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to a trigger entity that terminated the activity, or to an activity, known as ender that generated the trigger."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-End"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-End"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasEndedBy .

prov:qualifiedRemoval
        a                   owl:ObjectProperty ;
        rdfs:domain         prov:Dictionary ;
        rdfs:isDefinedBy    prov: ;
        rdfs:label          "qualifiedRemoval" ;
        rdfs:range          prov:Removal ;
        rdfs:subPropertyOf  prov:qualifiedDerivation ;
        prov:category       "collections" ;
        prov:component      "collections" ;
        prov:constraints    "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition     "The dictionary was derived from the other by removal. prov:qualifiedRemoval shows details of the removal, in particular the removed keys." ;
        prov:dm             "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal"^^xsd:anyURI ;
        prov:n              "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal"^^xsd:anyURI .

prov:quotedAs  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "quotedAs" ;
        owl:inverseOf     prov:wasQuotedFrom .

prov:EmptyDictionary  a   owl:Class ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "Empty Dictionary" ;
        rdfs:subClassOf   prov:Dictionary , prov:EmptyCollection ;
        prov:category     "collections" ;
        prov:component    "collections" ;
        prov:constraints  "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition   "An empty dictionary (i.e. has no members)." ;
        prov:dm           "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition"^^xsd:anyURI ;
        prov:n            "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary"^^xsd:anyURI .

prov:Contributor  a      owl:Class ;
        rdfs:label       "Contributor"@en ;
        rdfs:subClassOf  prov:Role ;
        prov:definition  "Role with the function of having responsibility for making contributions to a resource. The Agent assigned to this role is associated with a Modify or Create Activities"@en .

prov:Attribution  a           owl:Class ;
        rdfs:comment          "An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ]."@en ;
        rdfs:isDefinedBy      <http://www.w3.org/ns/prov-o#> ;
        rdfs:label            "Attribution" ;
        rdfs:subClassOf       prov:AgentInfluence ;
        prov:category         "qualified" ;
        prov:component        "agents-responsibility" ;
        prov:constraints      "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig"^^xsd:anyURI ;
        prov:definition       "Attribution is the ascribing of an entity to an agent.\n\nWhen an entity e is attributed to agent ag, entity e was generated by some unspecified activity that in turn was associated to agent ag. Thus, this relation is useful when the activity is not known, or irrelevant."@en ;
        prov:dm               "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribution"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:wasAttributedTo .

prov:hadInfluence  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "hadInfluence" ;
        owl:inverseOf     prov:influencer .

prov:EntityInfluence  a         owl:Class ;
        rdfs:comment            "It is not recommended that the type EntityInfluence be asserted without also asserting one of its more specific subclasses."@en , "EntityInfluence provides additional descriptions of an Entity's binary influence upon any other kind of resource. Instances of EntityInfluence use the prov:entity property to cite the influencing Entity."@en ;
        rdfs:isDefinedBy        <http://www.w3.org/ns/prov-o#> ;
        rdfs:label              "EntityInfluence" ;
        rdfs:seeAlso            prov:entity ;
        rdfs:subClassOf         prov:Influence ;
        prov:category           "qualified" ;
        prov:editorsDefinition  "EntityInfluence is the capacity of an entity to have an effect on the character, development, or behavior of another by means of usage, start, end, derivation, or other. "@en .

prov:Removal  a               owl:Class ;
        rdfs:isDefinedBy      prov: ;
        rdfs:label            "Removal" ;
        rdfs:subClassOf       prov:Derivation ;
        rdfs:subClassOf       [ a                owl:Restriction ;
                                owl:cardinality  "1"^^xsd:int ;
                                owl:onProperty   prov:dictionary
                              ] ;
        rdfs:subClassOf       [ a                   owl:Restriction ;
                                owl:minCardinality  "1"^^xsd:int ;
                                owl:onProperty      prov:removedKey
                              ] ;
        prov:category         "collections" ;
        prov:component        "collections" ;
        prov:constraints      "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints"^^xsd:anyURI ;
        prov:definition       "Removal is a derivation that transforms a dictionary into another, by removing one or more key-entity pairs." ;
        prov:dm               "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal"^^xsd:anyURI ;
        prov:n                "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal"^^xsd:anyURI ;
        prov:unqualifiedForm  prov:derivedByRemovalFrom .

prov:category  a          owl:AnnotationProperty ;
        rdfs:comment      "Classify prov-o terms into three categories, including 'starting-point', 'qualifed', and 'extended'. This classification is used by the prov-o html document to gently introduce prov-o terms to its users. "@en ;
        rdfs:isDefinedBy  prov: , <http://www.w3.org/ns/prov-o#> .

prov:todo  a    owl:AnnotationProperty .

prov:wasUsedBy  rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "wasUsedBy" ;
        owl:inverseOf     prov:used .

<http://www.w3.org/ns/prov-o#>
        a                      owl:Ontology ;
        rdfs:comment           "This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). \n\nIf you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/). All feedback is welcome."@en ;
        rdfs:label             "W3C PROVenance Interchange Ontology (PROV-O)"@en ;
        rdfs:seeAlso           <http://www.w3.org/ns/prov> , <http://www.w3.org/TR/prov-o/> ;
        owl:versionIRI         <http://www.w3.org/ns/prov-o-20130430> ;
        owl:versionInfo        "Recommendation version 2013-04-30"@en ;
        prov:specializationOf  <http://www.w3.org/ns/prov-o> ;
        prov:wasRevisionOf     <http://www.w3.org/ns/prov-o-20120312> .

prov:RightsHolder  a     owl:Class ;
        rdfs:label       "RightsHolder"@en ;
        rdfs:subClassOf  prov:Role ;
        prov:definition  "Role with the function of owning or managing rights over a resource. The Agent assigned to this role is associated with a RightsAssignment Activity"@en .

prov:generatedAtTime  a     owl:DatatypeProperty ;
        rdfs:comment        "The time at which an entity was completely created and is available for use."@en ;
        rdfs:domain         prov:Entity ;
        rdfs:isDefinedBy    <http://www.w3.org/ns/prov-o#> ;
        rdfs:label          "generatedAtTime" ;
        rdfs:range          xsd:dateTime ;
        prov:category       "expanded" ;
        prov:component      "entities-activities" ;
        prov:editorialNote  "It is the intent that the property chain holds: (prov:qualifiedGeneration o prov:atTime) rdfs:subPropertyOf prov:generatedAtTime."@en ;
        prov:qualifiedForm  prov:atTime , prov:Generation .

prov:qualifiedDelegationOf
        rdfs:isDefinedBy  <http://www.w3.org/ns/prov-o-inverses#> ;
        rdfs:label        "qualifiedDelegationOf" ;
        owl:inverseOf     prov:qualifiedDelegation .

[ a                      owl:Axiom ;
  rdfs:comment           "Revision is a derivation (see http://www.w3.org/TR/prov-dm/#term-Revision). Moreover, according to \nhttp://www.w3.org/TR/2013/REC-prov-constraints-20130430/#term-Revision 23 April 2012 'wasRevisionOf is a strict sub-relation of wasDerivedFrom since two entities e2 and e1 may satisfy wasDerivedFrom(e2,e1) without being a variant of each other.'" ;
  owl:annotatedProperty  rdfs:subPropertyOf ;
  owl:annotatedSource    prov:wasRevisionOf ;
  owl:annotatedTarget    prov:wasDerivedFrom
] .

prov:DirectQueryService
        a                 owl:Class ;
        rdfs:comment      "Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments." ;
        rdfs:isDefinedBy  prov: ;
        rdfs:label        "ProvenanceService" ;
        rdfs:subClassOf   prov:SoftwareAgent ;
        prov:aq           "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery"^^xsd:anyURI ;
        prov:category     "access-and-query" .

rdfs:label  a             owl:AnnotationProperty ;
        rdfs:comment      ""@en ;
        rdfs:isDefinedBy  prov: , <http://www.w3.org/ns/prov-o#> .
