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: docs/StudysetRequest.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
11
11
**doi** | **str** | A DOI connected to the published studyset (may change to being automatically created so each studyset connected to a successful meta-analysis gets a DOI). | [optional]
12
12
**pmid** | **str** | If the article connected to the studyset was published on PubMed, then link the ID here. | [optional]
13
13
**studies** | [**List[StudysetRequestRelationshipsStudiesInner]**](StudysetRequestRelationshipsStudiesInner.md) | Accepts study IDs or objects containing an ID and an optional curation stub UUID used to keep curation/extraction alignment. | [optional]
14
+
**curation_stub_map** | **Dict[str, str]** | Accepts a map of each study ID to the curation stub UUID used to keep curation/extraction alignment. | [optional]
14
15
**id** | **str** | short UUID specifying the location of this resource | [optional]
15
16
**public** | **bool** | whether the resource is listed in public searches or not | [optional][default to True]
**studies** | [**List[StudysetRequestRelationshipsStudiesInner]**](StudysetRequestRelationshipsStudiesInner.md) | Accepts study IDs or objects containing an ID and an optional curation stub UUID used to keep curation/extraction alignment. | [optional]
9
+
**curation_stub_map** | **Dict[str, str]** | Accepts a map of each study ID to the curation stub UUID used to keep curation/extraction alignment. | [optional]
@@ -35,10 +36,11 @@ class StudysetRequest(BaseModel):
35
36
doi: Optional[StrictStr] =Field(default=None, description="A DOI connected to the published studyset (may change to being automatically created so each studyset connected to a successful meta-analysis gets a DOI).")
36
37
pmid: Optional[StrictStr] =Field(default=None, description="If the article connected to the studyset was published on PubMed, then link the ID here.")
37
38
studies: Optional[List[StudysetRequestRelationshipsStudiesInner]] =Field(default=None, description="Accepts study IDs or objects containing an ID and an optional curation stub UUID used to keep curation/extraction alignment. ")
39
+
curation_stub_map: Optional[Dict[str, UUID]] =Field(default=None, description="Accepts a map of each study ID to the curation stub UUID used to keep curation/extraction alignment. ")
38
40
id: Optional[Annotated[str, Field(min_length=12, strict=True, max_length=30)]] =Field(default=None, description="short UUID specifying the location of this resource")
39
41
public: Optional[StrictBool] =Field(default=True, description="whether the resource is listed in public searches or not")
@@ -29,7 +30,8 @@ class StudysetRequestRelationships(BaseModel):
29
30
StudysetRequestRelationships
30
31
"""# noqa: E501
31
32
studies: Optional[List[StudysetRequestRelationshipsStudiesInner]] =Field(default=None, description="Accepts study IDs or objects containing an ID and an optional curation stub UUID used to keep curation/extraction alignment. ")
32
-
__properties: ClassVar[List[str]] = ["studies"]
33
+
curation_stub_map: Optional[Dict[str, UUID]] =Field(default=None, description="Accepts a map of each study ID to the curation stub UUID used to keep curation/extraction alignment. ")
0 commit comments