ns1:hasContribution leaf node


URI

http://scigraph.springernature.com/ontologies/core/hasContribution

Label

Property: has contribution

Description

The :hasContribution property relates a Scigraph entity to a contributor-event that specifies the role an agent has in the context of the history of that entity. For example, a person could be the author, editor, reviewer of different publications at different times.

Usage

DOMAINPROPERTYRANGE
ns1:Thing ns1:hasContribution ns1:Contribution

Implementation

@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ns1:hasContribution a owl:ObjectProperty ;
    rdfs:label "Property: has contribution"@en ;
    rdfs:comment "The :hasContribution property relates a Scigraph entity to a contributor-event that specifies the role an agent has in the context of the history of that entity. For example, a person could be the author, editor, reviewer of different publications at different times."@en ;
    rdfs:domain ns1:Thing ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range ns1:Contribution .