Source code for fairgraph.openminds.core.data.copyright
"""
Structured information on the copyright.
"""
# this file was auto-generated
from openminds.properties import Property
from openminds.v4.core import Copyright as OMCopyright
from fairgraph import KGEmbedded
[docs]
class Copyright(KGEmbedded, OMCopyright):
"""
Structured information on the copyright.
"""
type_ = "https://openminds.om-i.org/types/Copyright"
# forward properties are defined in the parent class (in openMINDS-Python)
reverse_properties = []
existence_query_properties = ("holders", "years")
def __init__(self, holders=None, years=None, id=None, data=None, space=None, release_status=None):
return KGEmbedded.__init__(self, data=data, holders=holders, years=years)