| Name |
Type |
Description |
Notes |
| name |
str |
Descriptive name for the annotation. |
[optional] |
| description |
str |
Long form description of the annotation. |
[optional] |
| metadata |
object |
object describing metadata about the annotation, such as software used or descriptions of the keys used in the annotation. |
[optional] |
| note_keys |
object |
The keys (columns) in the annotation and the key's respective data type (such as an integer or string). |
[optional] |
| notes |
AnnotationRequestRelationshipsNotes |
|
[optional] |
| id |
str |
short UUID specifying the location of this resource |
[optional] |
| public |
bool |
whether the resource is listed in public searches or not |
[optional] [default to True] |
| studyset |
str |
|
[optional] |
from neurostore_sdk.models.annotation_request import AnnotationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AnnotationRequest from a JSON string
annotation_request_instance = AnnotationRequest.from_json(json)
# print the JSON string representation of the object
print AnnotationRequest.to_json()
# convert the object into a dict
annotation_request_dict = annotation_request_instance.to_dict()
# create an instance of AnnotationRequest from a dict
annotation_request_form_dict = annotation_request.from_dict(annotation_request_dict)
[Back to Model list] [Back to API list] [Back to README]