"""
Structured information on the category of the software application.
"""
# this file was auto-generated
from openminds.properties import Property
from openminds.v4.controlled_terms import SoftwareApplicationCategory as OMSoftwareApplicationCategory
from fairgraph import KGObject
from openminds import IRI
[docs]
class SoftwareApplicationCategory(KGObject, OMSoftwareApplicationCategory):
"""
Structured information on the category of the software application.
"""
type_ = "https://openminds.om-i.org/types/SoftwareApplicationCategory"
default_space = "controlled"
# forward properties are defined in the parent class (in openMINDS-Python)
reverse_properties = [
Property(
"describes",
[
"openminds.v4.computation.ValidationTestVersion",
"openminds.v4.computation.WorkflowRecipeVersion",
"openminds.v4.core.DatasetVersion",
"openminds.v4.core.MetaDataModelVersion",
"openminds.v4.core.ModelVersion",
"openminds.v4.core.SoftwareVersion",
"openminds.v4.core.WebServiceVersion",
"openminds.v4.publications.Book",
"openminds.v4.publications.Chapter",
"openminds.v4.publications.LearningResource",
"openminds.v4.publications.LivePaperVersion",
"openminds.v4.publications.ScholarlyArticle",
"openminds.v4.sands.BrainAtlasVersion",
"openminds.v4.sands.CommonCoordinateSpaceVersion",
],
"keyword",
reverse="keywords",
multiple=True,
description="reverse of 'keywords'",
),
]
existence_query_properties = ("name",)
def __init__(
self,
name=None,
definition=None,
describes=None,
description=None,
interlex_identifier=None,
knowledge_space_link=None,
preferred_ontology_identifier=None,
synonyms=None,
id=None,
data=None,
space=None,
release_status=None,
):
return KGObject.__init__(
self,
id=id,
space=space,
release_status=release_status,
data=data,
name=name,
definition=definition,
describes=describes,
description=description,
interlex_identifier=interlex_identifier,
knowledge_space_link=knowledge_space_link,
preferred_ontology_identifier=preferred_ontology_identifier,
synonyms=synonyms,
)