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/StoreApi.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1906,7 +1906,7 @@ Name | Type | Description | Notes
1906
1906
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: neurostore_sdk/models/image_request.py
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,11 +37,12 @@ class ImageRequest(BaseModel):
37
37
value_type: Optional[StrictStr] =Field(default=None, description="The values the image represents. For example, T-statistic or Z-statistic, or Betas.")
38
38
add_date: Optional[datetime] =Field(default=None, description="Date the image was added.")
39
39
analysis: Optional[StrictStr] =None
40
+
study: Optional[StrictStr] =None
40
41
entities: Optional[List[Entity]] =None
41
42
analysis_name: Optional[StrictStr] =None
42
43
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")
43
44
public: Optional[StrictBool] =Field(default=True, description="whether the resource is listed in public searches or not")
Copy file name to clipboardExpand all lines: neurostore_sdk/models/image_return.py
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ class ImageReturn(BaseModel):
37
37
value_type: Optional[StrictStr] =Field(default=None, description="The values the image represents. For example, T-statistic or Z-statistic, or Betas.")
38
38
add_date: Optional[datetime] =Field(default=None, description="Date the image was added.")
39
39
analysis: Optional[StrictStr] =None
40
+
study: Optional[StrictStr] =None
40
41
entities: Optional[List[Entity]] =None
41
42
analysis_name: Optional[StrictStr] =None
42
43
created_at: Optional[datetime] =Field(default=None, description="time the resource was created on the database")
@@ -45,7 +46,7 @@ class ImageReturn(BaseModel):
45
46
public: Optional[StrictBool] =Field(default=True, description="whether the resource is listed in public searches or not")
46
47
user: Optional[StrictStr] =Field(default=None, description="who owns the resource")
0 commit comments