-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.json
More file actions
6163 lines (6163 loc) · 184 KB
/
Copy pathopenapi.json
File metadata and controls
6163 lines (6163 loc) · 184 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"openapi": "3.1.0",
"info": {
"title": "NiChart API",
"summary": "Backend API for the NiChart medical-imaging pipeline platform.",
"description": "Provides endpoints for managing projects, uploading imaging data, running containerised processing pipelines (locally via Docker or on AWS Batch), and retrieving results. \n\n**Authentication**: In cloud mode every request requires a Cognito ID token in the ``Authorization: Bearer`` header. In local mode (``NICHART_EXECUTION_MODE=local``) authentication is bypassed.",
"contact": {
"name": "CBICA",
"url": "https://github.com/CBICA/NiChart_Project"
},
"license": {
"name": "MIT"
},
"version": "0.1.0"
},
"paths": {
"/auth/login": {
"get": {
"tags": [
"Auth"
],
"summary": "Begin OAuth2 sign-in",
"description": "Generates a CSRF ``state`` and PKCE ``code_verifier``/``code_challenge``, stores them in short-lived httpOnly cookies, then redirects the browser to the Cognito Hosted UI authorization endpoint. Navigate the browser (not a fetch/XHR) to this URL to start sign-in.",
"operationId": "login_auth_login_get",
"responses": {
"307": {
"description": "Successful Response"
},
"302": {
"description": "Redirect to Cognito authorize endpoint."
},
"503": {
"description": "Cognito domain not configured.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
}
}
}
},
"/auth/callback": {
"get": {
"tags": [
"Auth"
],
"summary": "OAuth2 callback \u2014 exchange code for session",
"description": "Cognito redirects here after the user authenticates. Validates the CSRF ``state`` cookie, exchanges the authorization code for tokens (using the PKCE verifier + client secret), verifies the ID token, sets the ``session`` cookie, and redirects to the frontend. This endpoint is called by the browser following a redirect \u2014 not by JS fetch.",
"operationId": "callback_auth_callback_get",
"responses": {
"307": {
"description": "Successful Response"
},
"302": {
"description": "Redirect to frontend after successful authentication."
},
"400": {
"description": "State mismatch or missing parameters.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"401": {
"description": "Token validation failed.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"502": {
"description": "Cognito token exchange failed.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
}
}
}
},
"/auth/me": {
"get": {
"tags": [
"Auth"
],
"summary": "Return current user claims",
"description": "Reads the ``session`` cookie and returns safe user claims if the session is valid. The frontend should poll this endpoint to determine auth state on page load. Returns 401 when there is no session or it has expired \u2014 the client should redirect to ``GET /auth/login``. In local mode, always returns the OS user without a cookie.",
"operationId": "me_auth_me_get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UserInfo"
}
}
}
},
"401": {
"description": "No valid session.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
}
}
}
},
"/auth/logout": {
"get": {
"tags": [
"Auth"
],
"summary": "Sign out",
"description": "Clears the ``session`` and ``refresh_token`` cookies, then redirects to the Cognito logout URL (which itself redirects to the configured frontend URL). Navigate the browser to this URL \u2014 do not call it via fetch/XHR.",
"operationId": "logout_auth_logout_get",
"responses": {
"307": {
"description": "Successful Response"
},
"302": {
"description": "Redirect to Cognito logout endpoint."
}
}
}
},
"/catalog/pipelines": {
"get": {
"tags": [
"Catalog"
],
"summary": "List all enabled pipelines",
"description": "Returns a summary of every pipeline defined in the resources/pipelines directory. Use ``GET /catalog/pipelines/{pipeline_id}`` to retrieve the full definition.",
"operationId": "list_pipelines_catalog_pipelines_get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/PipelineSummary"
},
"type": "array",
"title": "Response List Pipelines Catalog Pipelines Get"
}
}
}
}
}
}
},
"/catalog/pipelines/{pipeline_id}": {
"get": {
"tags": [
"Catalog"
],
"summary": "Get pipeline detail",
"description": "Returns the full pipeline definition: description, categories, data requirements, and ordered steps with their tool and I/O mappings.",
"operationId": "get_pipeline_catalog_pipelines__pipeline_id__get",
"parameters": [
{
"name": "pipeline_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Pipeline Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PipelineDetail"
}
}
}
},
"404": {
"description": "Resource not found.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/catalog/tools": {
"get": {
"tags": [
"Catalog"
],
"summary": "List all available tools",
"description": "Returns a summary of every tool defined in the resources/tools directory.",
"operationId": "list_tools_catalog_tools_get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/ToolSummary"
},
"type": "array",
"title": "Response List Tools Catalog Tools Get"
}
}
}
}
}
}
},
"/catalog/tools/{tool_id}": {
"get": {
"tags": [
"Catalog"
],
"summary": "Get tool detail",
"description": "Returns the full tool specification: inputs, outputs, resource requirements, configurable parameters, and the per-subject time estimate used for queue-drain calculations.",
"operationId": "get_tool_catalog_tools__tool_id__get",
"parameters": [
{
"name": "tool_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Tool Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ToolDetail"
}
}
}
},
"404": {
"description": "Resource not found.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/catalog/resources/{path}": {
"get": {
"tags": [
"Catalog"
],
"summary": "Download a public resource file",
"description": "Serves static resource files from the server's ``resources/`` directory: atlases, label maps, normative data CSVs, and other reference data. No authentication required. Responses are cached for 24 hours.",
"operationId": "get_resource_catalog_resources__path__get",
"parameters": [
{
"name": "path",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Path"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/octet-stream": {}
}
},
"400": {
"description": "Invalid resource path.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"404": {
"description": "Resource not found.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/catalog/docs": {
"get": {
"tags": [
"Docs"
],
"summary": "List documentation topics",
"description": "Returns a summary of every documentation topic in resources/docs/. Each topic may cover one or more related pipelines (e.g. harmonized and base DLMUSE variants share a single 'dlmuse' topic). No authentication required.",
"operationId": "list_docs_catalog_docs_get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/DocTopicSummary"
},
"type": "array",
"title": "Response List Docs Catalog Docs Get"
}
}
}
}
}
}
},
"/catalog/docs/{docs_id}": {
"get": {
"tags": [
"Docs"
],
"summary": "Get documentation topic manifest",
"description": "Returns the manifest for a documentation topic: its sections, audience tags, and the pipeline IDs it covers. Use the ``file`` field of each section with ``GET /catalog/docs/{docs_id}/{file}`` to fetch the actual content. No authentication required.",
"operationId": "get_docs_manifest_catalog_docs__docs_id__get",
"parameters": [
{
"name": "docs_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Docs Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DocManifest"
}
}
}
},
"404": {
"description": "Topic or file not found.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"400": {
"description": "Invalid path.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/catalog/docs/{docs_id}/{path}": {
"get": {
"tags": [
"Docs"
],
"summary": "Fetch a documentation file",
"description": "Serves any file within the documentation topic folder: markdown prose, images, or JSON data. Relative image references in markdown files resolve naturally to further requests under this same path prefix. Path traversal outside the topic folder is rejected. No authentication required.",
"operationId": "get_docs_file_catalog_docs__docs_id___path__get",
"parameters": [
{
"name": "docs_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Docs Id"
}
},
{
"name": "path",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Path"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/octet-stream": {}
}
},
"404": {
"description": "Topic or file not found.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"400": {
"description": "Invalid path.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/cloud/status": {
"get": {
"tags": [
"Cloud"
],
"summary": "Cloud queue status",
"description": "Returns the number of running and pending jobs on the AWS Batch queue and a rough estimate of how long until the queue drains. In local mode all job-count fields are null. No authentication required.",
"operationId": "cloud_status_cloud_status_get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CloudStatusResponse"
}
}
}
},
"503": {
"description": "Could not reach the AWS Batch API.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
}
}
}
},
"/projects": {
"get": {
"tags": [
"Projects"
],
"summary": "List projects",
"description": "Returns all projects owned by the authenticated user.",
"operationId": "list_projects_projects_get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"items": {
"$ref": "#/components/schemas/Project"
},
"type": "array",
"title": "Response List Projects Projects Get"
}
}
}
},
"401": {
"description": "Missing or invalid token.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
}
}
},
"post": {
"tags": [
"Projects"
],
"summary": "Create a project",
"description": "Creates a new project directory. The project name is used as the directory name and URL path segment. Must match ``^[a-zA-Z0-9][a-zA-Z0-9_-]{0,63}$``.",
"operationId": "create_project_projects_post",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProjectCreate"
}
}
},
"required": true
},
"responses": {
"201": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Project"
}
}
}
},
"400": {
"description": "Bad request (e.g. invalid project name).",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"401": {
"description": "Missing or invalid token.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"409": {
"description": "A project with that name already exists.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/projects/{project_id}": {
"delete": {
"tags": [
"Projects"
],
"summary": "Delete a project",
"description": "Permanently deletes the project and all its data. Irreversible.",
"operationId": "delete_project_projects__project_id__delete",
"parameters": [
{
"name": "project_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Project Id"
}
}
],
"responses": {
"204": {
"description": "Successful Response"
},
"401": {
"description": "Missing or invalid token.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"404": {
"description": "Project not found.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/projects/{project_id}/files": {
"get": {
"tags": [
"Files"
],
"summary": "List project files",
"description": "Returns a flat listing of all visible files and directories in the project. Internal staging (``_upload/``) and working (``_working/``) directories are excluded.",
"operationId": "list_files_projects__project_id__files_get",
"parameters": [
{
"name": "project_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Project Id"
}
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DirectoryTree"
}
}
}
},
"401": {
"description": "Missing or invalid token.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"403": {
"description": "Access denied to this project.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"404": {
"description": "Project or file not found.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"400": {
"description": "Invalid or unsafe path.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
},
"delete": {
"tags": [
"Files"
],
"summary": "Delete a file or directory",
"description": "Permanently deletes the file or directory at ``path``.",
"operationId": "delete_file_projects__project_id__files_delete",
"parameters": [
{
"name": "project_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Project Id"
}
},
{
"name": "path",
"in": "query",
"required": true,
"schema": {
"type": "string",
"description": "Path relative to the project root.",
"title": "Path"
},
"description": "Path relative to the project root."
}
],
"responses": {
"204": {
"description": "Successful Response"
},
"401": {
"description": "Missing or invalid token.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"403": {
"description": "Access denied to this project.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"404": {
"description": "Project or file not found.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"400": {
"description": "Invalid or unsafe path.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/projects/{project_id}/files/download": {
"get": {
"tags": [
"Files"
],
"summary": "Download a file or directory",
"description": "Download a single file, or a directory as a streaming zip archive when ``zip=true``. The ``path`` is relative to the project root and is validated to prevent traversal.",
"operationId": "download_file_projects__project_id__files_download_get",
"parameters": [
{
"name": "project_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Project Id"
}
},
{
"name": "path",
"in": "query",
"required": true,
"schema": {
"type": "string",
"description": "Path relative to the project root.",
"title": "Path"
},
"description": "Path relative to the project root."
},
{
"name": "zip",
"in": "query",
"required": false,
"schema": {
"type": "boolean",
"description": "Stream target directory as a zip archive.",
"default": false,
"title": "Zip"
},
"description": "Stream target directory as a zip archive."
}
],
"responses": {
"200": {
"description": "File content or zip stream.",
"content": {
"application/json": {
"schema": {}
}
}
},
"401": {
"description": "Missing or invalid token.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"403": {
"description": "Access denied to this project.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"404": {
"description": "Project or file not found.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"400": {
"description": "Invalid or unsafe path.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ErrorDetail"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/projects/{project_id}/files/upload/nifti": {
"post": {
"tags": [
"Files"
],
"summary": "Upload NIfTI file(s) to staging",
"description": "Accepts one or more ``.nii`` / ``.nii.gz`` files. Files land in the project staging area and the server returns its best-effort MRID and modality inference. Follow up with the commit endpoint to move them into the project.",
"operationId": "upload_nifti_projects__project_id__files_upload_nifti_post",
"parameters": [
{
"name": "project_id",
"in": "path",
"required": true,
"schema": {
"type": "string",
"title": "Project Id"
}
}