Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ENH] Post list to annotation-analyses #81

Merged
merged 5 commits into from
Mar 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions neurostore-openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -931,6 +931,36 @@ paths:
$ref: '#/components/schemas/note-collection-list'
x-stoplight:
id: fjrufmjjb3y4q
post:
summary: Your POST endpoint
tags:
- analyses
- annotations
- store
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/note-collection-return'
x-stoplight:
id: z1xizns9dcjz5
requestBody:
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/note-collection-request'
security:
- JSON-Web-Token: []
description: |-
This endpoint does not allow for creation, only modification of existing annotation-analyses.
If you wish to create an annotation-analysis, post to the annotations endpoint and/or add the analysis
to the appropriate study in the studyset, and the annotation-analysis will be created automatically.
'/annotation-analyses/{id}':
parameters:
- schema:
Expand Down
Loading