@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix tvc: <http://www.essepuntato.it/2012/04/tvc/> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

pro:relatesToEntity a owl:ObjectProperty ;
    rdfs:label "relates to"@en ;
    vann:example """
        :shotton-affiliation-for-my-dataset a pro:RoleInTime ;
                pro:withRole scoro:affiliate ;
                pro:relatesToEntity :my-dataset .
        """ ;
    vaem:rationale """
Someone's affiliation is a relationship of membership or belonging that the person can have with respect to a particular organization (i.e., an individual of the class `foaf:Organization`). 
Such an affiliation may be specified in the document with respect to which that agent is an author or contributor. 
A particular individual of [SCoRO](http://purl.org/spar/scoro), i.e., `scoro:affiliate` (belonging to the class `scoro:OrganizationalRole`) is used to express such an affiliation. 
The domain of `pro:withRole` is not `foaf:Agent`, but rather a member of the class `pro:RoleInTime`, which itself is the range of the property `pro:holdsRoleInTime`, for which the domain is `foaf:Agent` (i.e., our contributor).
        """@en ;
    rdfs:comment "An entity representing the context for a time-indexed situation."@en ;
    rdfs:domain pro:RoleInTime ;
    rdfs:isDefinedBy pro: ;
    rdfs:subPropertyOf tvc:withinContext ;
    vs:term_status reg:statusStable .

