|
| 1 | +""" |
| 2 | +<description not available> |
| 3 | +""" |
| 4 | + |
| 5 | +# this file was auto-generated |
| 6 | + |
| 7 | +from fairgraph import KGObject, IRI |
| 8 | +from fairgraph.properties import Property |
| 9 | + |
| 10 | + |
| 11 | +from fairgraph.base import IRI |
| 12 | + |
| 13 | + |
| 14 | +class MRAcquisitionType(KGObject): |
| 15 | + """ |
| 16 | + <description not available> |
| 17 | + """ |
| 18 | + |
| 19 | + default_space = "controlled" |
| 20 | + type_ = "https://openminds.ebrains.eu/controlledTerms/MRAcquisitionType" |
| 21 | + properties = [ |
| 22 | + Property( |
| 23 | + "definition", |
| 24 | + str, |
| 25 | + "vocab:definition", |
| 26 | + doc="Short, but precise statement of the meaning of a word, word group, sign or a symbol.", |
| 27 | + ), |
| 28 | + Property( |
| 29 | + "description", |
| 30 | + str, |
| 31 | + "vocab:description", |
| 32 | + doc="Longer statement or account giving the characteristics of the m r acquisition type.", |
| 33 | + ), |
| 34 | + Property( |
| 35 | + "interlex_identifier", |
| 36 | + IRI, |
| 37 | + "vocab:interlexIdentifier", |
| 38 | + doc="Persistent identifier for a term registered in the InterLex project.", |
| 39 | + ), |
| 40 | + Property( |
| 41 | + "knowledge_space_link", |
| 42 | + IRI, |
| 43 | + "vocab:knowledgeSpaceLink", |
| 44 | + doc="Persistent link to an encyclopedia entry in the Knowledge Space project.", |
| 45 | + ), |
| 46 | + Property( |
| 47 | + "name", |
| 48 | + str, |
| 49 | + "vocab:name", |
| 50 | + required=True, |
| 51 | + doc="Word or phrase that constitutes the distinctive designation of the m r acquisition type.", |
| 52 | + ), |
| 53 | + Property( |
| 54 | + "preferred_ontology_identifier", |
| 55 | + IRI, |
| 56 | + "vocab:preferredOntologyIdentifier", |
| 57 | + doc="Persistent identifier of a preferred ontological term.", |
| 58 | + ), |
| 59 | + Property( |
| 60 | + "synonyms", |
| 61 | + str, |
| 62 | + "vocab:synonym", |
| 63 | + multiple=True, |
| 64 | + doc="Words or expressions used in the same language that have the same or nearly the same meaning in some or all senses.", |
| 65 | + ), |
| 66 | + ] |
| 67 | + reverse_properties = [ |
| 68 | + Property( |
| 69 | + "describes", |
| 70 | + [ |
| 71 | + "openminds.computation.ValidationTestVersion", |
| 72 | + "openminds.computation.WorkflowRecipeVersion", |
| 73 | + "openminds.core.DatasetVersion", |
| 74 | + "openminds.core.MetaDataModelVersion", |
| 75 | + "openminds.core.ModelVersion", |
| 76 | + "openminds.core.SoftwareVersion", |
| 77 | + "openminds.core.WebServiceVersion", |
| 78 | + "openminds.publications.Book", |
| 79 | + "openminds.publications.Chapter", |
| 80 | + "openminds.publications.LearningResource", |
| 81 | + "openminds.publications.LivePaperVersion", |
| 82 | + "openminds.publications.ScholarlyArticle", |
| 83 | + "openminds.sands.BrainAtlasVersion", |
| 84 | + "openminds.sands.CommonCoordinateSpaceVersion", |
| 85 | + ], |
| 86 | + "^vocab:keyword", |
| 87 | + reverse="keywords", |
| 88 | + multiple=True, |
| 89 | + doc="reverse of 'keywords'", |
| 90 | + ), |
| 91 | + ] |
| 92 | + existence_query_properties = ("name",) |
| 93 | + |
| 94 | + def __init__( |
| 95 | + self, |
| 96 | + name=None, |
| 97 | + definition=None, |
| 98 | + describes=None, |
| 99 | + description=None, |
| 100 | + interlex_identifier=None, |
| 101 | + knowledge_space_link=None, |
| 102 | + preferred_ontology_identifier=None, |
| 103 | + synonyms=None, |
| 104 | + id=None, |
| 105 | + data=None, |
| 106 | + space=None, |
| 107 | + scope=None, |
| 108 | + ): |
| 109 | + return super().__init__( |
| 110 | + id=id, |
| 111 | + space=space, |
| 112 | + scope=scope, |
| 113 | + data=data, |
| 114 | + name=name, |
| 115 | + definition=definition, |
| 116 | + describes=describes, |
| 117 | + description=description, |
| 118 | + interlex_identifier=interlex_identifier, |
| 119 | + knowledge_space_link=knowledge_space_link, |
| 120 | + preferred_ontology_identifier=preferred_ontology_identifier, |
| 121 | + synonyms=synonyms, |
| 122 | + ) |
0 commit comments