You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/include_access_model/datamodel/include_access_model_pydantic.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -265,6 +265,7 @@ class Study(Record):
265
265
actual_number_of_participants: int=Field(default=..., title="Actual Number of Participants", description="""Total participants included at this time.""", json_schema_extra= { "linkml_meta": {'domain_of': ['Study']} })
266
266
acknowledgments: Optional[str] =Field(default=None, title="Acknowledgments", description="""Funding statement and acknowledgments for this study""", json_schema_extra= { "linkml_meta": {'domain_of': ['Study']} })
267
267
citation_statement: Optional[str] =Field(default=None, title="Citation Statement", description="""Statement that secondary data users should use to acknowledge use of this study or dataset. E.g., \"The results analyzed and <published or shown> here are based in whole or in part upon data generated by the INCLUDE (INvestigation of Co-occurring conditions across the Lifespan to Understand Down syndromE) Project <insert accession number(s) and/or study DOI(s)>, and were accessed from the INCLUDE Data Hub and <insert other database(s)>.\"""", json_schema_extra= { "linkml_meta": {'domain_of': ['Study']} })
268
+
doi: Optional[str] =Field(default=None, title="DOI", description="""Digital Object Identifier (DOI) for this Record.""", json_schema_extra= { "linkml_meta": {'domain_of': ['Study', 'DOI']} })
268
269
uuid: str=Field(default=..., title="UUID", description="""Internally assigned UUID for data management and QC purposes""", json_schema_extra= { "linkml_meta": {'domain_of': ['Record']} })
269
270
id: str=Field(default=..., title="ID", description="""INLCUDE Global ID for this record""", json_schema_extra= { "linkml_meta": {'domain_of': ['Record']} })
270
271
external_id: Optional[list[str]] =Field(default=[], title="External Identifiers", description="""Other identifiers for this entity, eg, from the submitting study or in systems like dbGaP""", json_schema_extra= { "linkml_meta": {'domain_of': ['Record']} })
doi: Optional[str] =Field(default=None, title="DOI", description="""Digital Object Identifier (DOI) for this Record.""", json_schema_extra= { "linkml_meta": {'domain_of': ['DOI']} })
298
+
doi: Optional[str] =Field(default=None, title="DOI", description="""Digital Object Identifier (DOI) for this Record.""", json_schema_extra= { "linkml_meta": {'domain_of': ['Study', 'DOI']} })
298
299
bibliographic_reference: Optional[str] =Field(default=None, title="Bibiliographic Reference", description="""Text use to reference this Record.""", json_schema_extra= { "linkml_meta": {'domain_of': ['DOI', 'Publication']} })
299
300
uuid: str=Field(default=..., title="UUID", description="""Internally assigned UUID for data management and QC purposes""", json_schema_extra= { "linkml_meta": {'domain_of': ['Record']} })
300
301
id: str=Field(default=..., title="ID", description="""INLCUDE Global ID for this record""", json_schema_extra= { "linkml_meta": {'domain_of': ['Record']} })
0 commit comments