Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 2.23 KB

File metadata and controls

41 lines (32 loc) · 2.23 KB

StudysetRequestRelationshipsStudiesInner

Properties

Name Type Description Notes
id str short UUID specifying the location of this resource
curation_stub_uuid str [optional]
doi str Digital object identifier of the study. [optional]
name str Title of the study. [optional]
metadata object Metadata associated with the study not covered by the other study attributes. [optional]
description str Long form description of the study, typically the abstract. [optional]
publication str The journal/place of publication for the study. [optional]
pmid str If the study was published on PubMed, place the PubMed ID here. [optional]
authors str The authors on the publication of this study. [optional]
year int The year this study was published. [optional]
analyses StudyRequestRelationshipsAnalyses [optional]
public bool whether the resource is listed in public searches or not [optional] [default to True]
pmcid str [optional]

Example

from neurostore_sdk.models.studyset_request_relationships_studies_inner import StudysetRequestRelationshipsStudiesInner

# TODO update the JSON string below
json = "{}"
# create an instance of StudysetRequestRelationshipsStudiesInner from a JSON string
studyset_request_relationships_studies_inner_instance = StudysetRequestRelationshipsStudiesInner.from_json(json)
# print the JSON string representation of the object
print(StudysetRequestRelationshipsStudiesInner.to_json())

# convert the object into a dict
studyset_request_relationships_studies_inner_dict = studyset_request_relationships_studies_inner_instance.to_dict()
# create an instance of StudysetRequestRelationshipsStudiesInner from a dict
studyset_request_relationships_studies_inner_from_dict = StudysetRequestRelationshipsStudiesInner.from_dict(studyset_request_relationships_studies_inner_dict)

[Back to Model list] [Back to API list] [Back to README]