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

prov:wasStartedBy a owl:ObjectProperty ;
    rdfs:label "wasStartedBy" ;
    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." ;
    rdfs:domain prov:Activity ;
    rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
    rdfs:range prov:Entity ;
    rdfs:subPropertyOf prov:wasInfluencedBy ;
    owl:propertyChainAxiom [ rdf:first prov:qualifiedStart ;
            rdf:rest [ ] ] ;
    skos:definition "Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity." ;
    prov:category "expanded" ;
    prov:component "entities-activities" ;
    prov:inverse "started" ;
    prov:qualifiedForm prov:Start,
        prov:qualifiedStart .

