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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
10
10
**publication** | **str** | The journal/source the studyset is connected to if the studyset was published. | [optional]
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
-
**studies** | **List[object]** | | [optional]
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
14
**id** | **str** | short UUID specifying the location of this resource | [optional]
15
15
**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]
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
@@ -33,7 +34,7 @@ class StudysetRequest(BaseModel):
33
34
publication: Optional[StrictStr] =Field(default=None, description="The journal/source the studyset is connected to if the studyset was published.")
34
35
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).")
35
36
pmid: Optional[StrictStr] =Field(default=None, description="If the article connected to the studyset was published on PubMed, then link the ID here.")
36
-
studies: Optional[List[Dict[str, Any]]]=None
37
+
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. ")
37
38
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")
38
39
public: Optional[StrictBool] =Field(default=True, description="whether the resource is listed in public searches or not")
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. ")
0 commit comments