Source code for fairgraph.openminds.core.actors.contribution

"""
Structured information on the contribution made to a research product.
"""

# this file was auto-generated

from openminds.properties import Property
from openminds.v4.core import Contribution as OMContribution
from fairgraph import KGEmbedded


[docs] class Contribution(KGEmbedded, OMContribution): """ Structured information on the contribution made to a research product. """ type_ = "https://openminds.om-i.org/types/Contribution" # forward properties are defined in the parent class (in openMINDS-Python) reverse_properties = [] existence_query_properties = ("contributor", "types") def __init__(self, contributor=None, types=None, id=None, data=None, space=None, release_status=None): return KGEmbedded.__init__(self, data=data, contributor=contributor, types=types)