-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.json
4828 lines (4828 loc) · 149 KB
/
openapi.json
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.0.3",
"info": {
"title": "trieve-server",
"description": "Trieve REST API OpenAPI Documentation",
"license": {
"name": ""
},
"version": "1.0.0"
},
"paths": {
"/api/auth": {
"get": {
"tags": [
"auth"
],
"summary": "login",
"description": "login\n\nThis will redirect you to the OAuth provider for authentication with email/pass, SSO, Google, Github, etc.",
"operationId": "login",
"requestBody": {
"description": "Query parameters for login to be included as kv pairs after ? on the request URL.",
"content": {
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "#/components/schemas/AuthQuery"
}
}
},
"required": true
},
"responses": {
"303": {
"description": "Response that redirects to OAuth provider through a Location header to be handled by browser."
},
"400": {
"description": "OAuth error likely with OIDC provider.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
},
"delete": {
"tags": [
"auth"
],
"summary": "logout",
"description": "logout\n\nInvalidate your current auth credential stored typicall stored in a cookie. This does not invalidate your API key.",
"operationId": "logout",
"responses": {
"204": {
"description": "Confirmation that your current auth token has been invalidated. This does not invalidate your API key."
}
}
}
},
"/api/auth/callback": {
"get": {
"tags": [
"auth"
],
"summary": "openid_callback",
"description": "openid_callback\n\nThis is the callback route for the OAuth provider, it should not be called directly. Redirects to browser with set-cookie header.",
"operationId": "callback",
"responses": {
"200": {
"description": "Response that returns with set-cookie header",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SlimUser"
}
}
}
},
"400": {
"description": "Email or password empty or incorrect",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/auth/me": {
"get": {
"tags": [
"auth"
],
"summary": "get_me",
"description": "get_me\n\nGet the user corresponding to your current auth credentials.",
"operationId": "get_me",
"responses": {
"200": {
"description": "The user corresponding to your current auth credentials",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SlimUser"
}
}
}
},
"400": {
"description": "Error message indicitating you are not currently signed in",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/bookmark/{collection_id}/{bookmark_id}": {
"delete": {
"tags": [
"chunk_collection"
],
"summary": "delete_bookmark",
"description": "delete_bookmark\n\nRoute to delete a bookmark. Think of a bookmark as a chunk which is a member of a collection.",
"operationId": "delete_bookmark",
"parameters": [
{
"name": "collection_id",
"in": "path",
"description": "Id of the collection to remove the bookmark'ed chunk from",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "bookmark_id",
"in": "path",
"description": "Id of the bookmark to remove",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"204": {
"description": "Confirmation that the chunk was removed to the collection"
},
"400": {
"description": "Service error relating to removing the chunk from the collection",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk": {
"post": {
"tags": [
"chunk"
],
"summary": "create_chunk",
"description": "create_chunk\n\nCreate a new chunk. If the chunk has the same tracking_id as an existing chunk, the request will fail. Once a chunk is created, it can be searched for using the search endpoint.",
"operationId": "create_chunk",
"requestBody": {
"description": "JSON request payload to create a new chunk (chunk)",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateChunkData"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "JSON response payload containing the created chunk",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReturnCreatedChunk"
}
}
}
},
"400": {
"description": "Service error relating to to creating a chunk, likely due to conflicting tracking_id",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk/gen_suggestions": {
"post": {
"tags": [
"chunk"
],
"summary": "get_suggested_queries",
"description": "get_suggested_queries\n\nThis endpoint will generate 3 suggested queries based off the query provided in the request body and return them as a JSON object.",
"operationId": "create_suggested_queries_handler",
"requestBody": {
"description": "JSON request payload to get alternative suggested queries",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuggestedQueriesRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "A JSON object containing a list of alternative suggested queries",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SuggestedQueriesResponse"
}
}
}
},
"400": {
"description": "Service error relating to to updating chunk, likely due to conflicting tracking_id",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk/generate": {
"post": {
"tags": [
"chunk"
],
"summary": "generate_off_chunks",
"description": "generate_off_chunks\n\nThis endpoint exists as an alternative to the topic+message concept where our API handles chat memory. With this endpoint, the user is responsible for providing the context window and the prompt. See more in the \"search before generate\" page at docs.trieve.ai.",
"operationId": "generate_off_chunks",
"requestBody": {
"description": "JSON request payload to perform RAG on some chunks (chunks)",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GenerateChunksRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "This will be a HTTP stream of a string, check the chat or search UI for an example how to process this"
},
"400": {
"description": "Service error relating to to updating chunk, likely due to conflicting tracking_id",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk/recommend": {
"post": {
"tags": [
"chunk"
],
"summary": "get_recommended_chunks",
"description": "get_recommended_chunks\n\nGet recommendations of chunks similar to the chunks in the request. Think about this as a feature similar to the \"add to playlist\" recommendation feature on Spotify. This request pairs especially well with our collections endpoint.",
"operationId": "get_recommended_chunks",
"requestBody": {
"description": "JSON request payload to get recommendations of chunks similar to the chunks in the request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/RecommendChunksRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "JSON response payload containing chunks with scores which are similar to those in the request body",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ChunkMetadataWithFileData"
}
}
}
}
},
"400": {
"description": "Service error relating to to getting similar chunks",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk/search": {
"post": {
"tags": [
"chunk"
],
"summary": "search",
"description": "search\n\nThis route provides the primary search functionality for the API. It can be used to search for chunks by semantic similarity, full-text similarity, or a combination of both. Results' `chunk_html` values will be modified with `<b>` tags for sub-sentence highlighting.",
"operationId": "search_chunk",
"requestBody": {
"description": "JSON request payload to semantically search for chunks (chunks)",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchChunkData"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "chunks which are similar to the embedding vector of the search query",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchChunkQueryResponseBody"
}
}
}
},
"400": {
"description": "Service error relating to searching",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk/tracking_id/update": {
"put": {
"tags": [
"chunk"
],
"summary": "update_chunk_by_tracking_id",
"description": "update_chunk_by_tracking_id\n\nUpdate a chunk by tracking_id. This is useful for when you are coordinating with an external system and want to use the tracking_id to identify the chunk.",
"operationId": "update_chunk_by_tracking_id",
"requestBody": {
"description": "JSON request payload to update a chunk by tracking_id (chunks)",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateChunkByTrackingIdData"
}
}
},
"required": true
},
"responses": {
"204": {
"description": "Confirmation that the chunk has been updated as per your request"
},
"400": {
"description": "Service error relating to to updating chunk",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk/tracking_id/{tracking_id}": {
"get": {
"tags": [
"chunk"
],
"summary": "get_chunk_by_tracking_id",
"description": "get_chunk_by_tracking_id\n\nGet a singular chunk by tracking_id. This is useful for when you are coordinating with an external system and want to use your own id as the primary reference for a chunk.",
"operationId": "get_chunk_by_tracking_id",
"parameters": [
{
"name": "tracking_id",
"in": "path",
"description": "tracking_id of the chunk you want to fetch",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "chunk with the tracking_id that you were searching for",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ChunkMetadata"
}
}
}
},
"400": {
"description": "Service error relating to fidning a chunk by tracking_id",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
},
"delete": {
"tags": [
"chunk"
],
"summary": "delete_chunk_by_tracking_id",
"description": "delete_chunk_by_tracking_id\n\nDelete a chunk by tracking_id. This is useful for when you are coordinating with an external system and want to use the tracking_id to identify the chunk. If deleting a root chunk which has a collision, the most recently created collision will become a new root chunk.",
"operationId": "delete_chunk_by_tracking_id",
"parameters": [
{
"name": "tracking_id",
"in": "path",
"description": "tracking_id of the chunk you want to delete",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"204": {
"description": "Confirmation that the chunk with the tracking_id specified was deleted"
},
"400": {
"description": "Service error relating to finding a chunk by tracking_id",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk/update": {
"put": {
"tags": [
"chunk"
],
"summary": "update_chunk",
"description": "update_chunk\n\nUpdate a chunk. If you try to change the tracking_id of the chunk to have the same tracking_id as an existing chunk, the request will fail.",
"operationId": "update_chunk",
"requestBody": {
"description": "JSON request payload to update a chunk (chunk)",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateChunkData"
}
}
},
"required": true
},
"responses": {
"204": {
"description": "No content Ok response indicating the chunk was updated as requested"
},
"400": {
"description": "Service error relating to to updating chunk, likely due to conflicting tracking_id",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk/{chunk_id}": {
"get": {
"tags": [
"chunk"
],
"summary": "get_chunk",
"description": "get_chunk\n\nGet a singular chunk by id.",
"operationId": "get_chunk_by_id",
"parameters": [
{
"name": "chunk_id",
"in": "path",
"description": "Id of the chunk you want to fetch.",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"200": {
"description": "chunk with the id that you were searching for",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ChunkMetadata"
}
}
}
},
"400": {
"description": "Service error relating to fidning a chunk by tracking_id",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
},
"delete": {
"tags": [
"chunk"
],
"summary": "delete_chunk",
"description": "delete_chunk\n\nDelete a chunk by its id. If deleting a root chunk which has a collision, the most recently created collision will become a new root chunk.",
"operationId": "delete_chunk",
"parameters": [
{
"name": "chunk_id",
"in": "path",
"description": "id of the chunk you want to delete",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"204": {
"description": "Confirmation that the chunk with the id specified was deleted"
},
"400": {
"description": "Service error relating to finding a chunk by tracking_id",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk_collection": {
"post": {
"tags": [
"chunk_collection"
],
"summary": "create_chunk_collection",
"description": "create_chunk_collection\n\nCreate a new chunk_collection. Think of this as analogous to a bookmark folder.",
"operationId": "create_chunk_collection",
"requestBody": {
"description": "JSON request payload to cretea a chunkCollection",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateChunkCollectionData"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Returns the created chunkCollection",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ChunkCollection"
}
}
}
},
"400": {
"description": "Service error relating to creating the chunkCollection",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
},
"put": {
"tags": [
"chunk_collection"
],
"summary": "update_chunk_collection",
"description": "update_chunk_collection\n\nUpdate a chunk_collection. Think of this as analogous to a bookmark folder.",
"operationId": "update_chunk_collection",
"requestBody": {
"description": "JSON request payload to update a chunkCollection",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateChunkCollectionData"
}
}
},
"required": true
},
"responses": {
"204": {
"description": "Confirmation that the chunkCollection was updated"
},
"400": {
"description": "Service error relating to updating the chunkCollection",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk_collection/bookmark": {
"post": {
"tags": [
"chunk_collection"
],
"operationId": "get_collections_chunk_is_in",
"requestBody": {
"description": "JSON request payload to get the collections that a chunk is in",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/GetCollectionsForChunksData"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "JSON body representing the collections that the chunk is in",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BookmarkCollectionResult"
}
}
}
}
},
"400": {
"description": "Service error relating to getting the collections that the chunk is in",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk_collection/search": {
"post": {
"tags": [
"chunk_collection"
],
"summary": "collection_search",
"description": "collection_search\n\nThis route allows you to search only within a collection. This is useful for when you only want search results to contain chunks which are members of a specific group. Think about this like searching within a playlist or bookmark folder.",
"operationId": "search_collections",
"requestBody": {
"description": "JSON request payload to semantically search a collection",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchCollectionsData"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Collection chunks which are similar to the embedding vector of the search query",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchCollectionsResult"
}
}
}
},
"400": {
"description": "Service error relating to getting the collections that the chunk is in",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk_collection/{collection_id}": {
"post": {
"tags": [
"chunk_collection"
],
"summary": "add_bookmark",
"description": "add_bookmark\n\nRoute to add a bookmark. Think of a bookmark as a chunk which is a member of a collection.",
"operationId": "add_bookmark",
"parameters": [
{
"name": "collection_id",
"in": "path",
"description": "Id of the collection to add the chunk to as a bookmark",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"requestBody": {
"description": "JSON request payload to add a chunk to a collection (bookmark it)",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AddChunkToCollectionData"
}
}
},
"required": true
},
"responses": {
"204": {
"description": "Confirmation that the chunk was added to the collection (bookmark'ed)."
},
"400": {
"description": "Service error relating to getting the collections that the chunk is in.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
},
"delete": {
"tags": [
"chunk_collection"
],
"summary": "delete_chunk_collection",
"description": "delete_chunk_collection\n\nThis will delete a chunk_collection. This will not delete the chunks that are in the collection. We will soon support deleting a chunk_collection along with its member chunks.",
"operationId": "delete_chunk_collection",
"parameters": [
{
"name": "collection_id",
"in": "path",
"description": "Id of the chunk_collection to delete",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
}
],
"responses": {
"204": {
"description": "Confirmation that the chunkCollection was deleted"
},
"400": {
"description": "Service error relating to deleting the chunkCollection",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk_collection/{collection_id}/{page}": {
"get": {
"tags": [
"chunk_collection"
],
"summary": "get_all_bookmarks",
"description": "get_all_bookmarks\n\nRoute to get all bookmarks for a collection. Think of a bookmark as a chunk which is a member of a collection. The response is paginated, with each page containing 10 chunks (bookmarks). Support for custom page size is coming soon.",
"operationId": "get_all_bookmarks",
"parameters": [
{
"name": "collection_id",
"in": "path",
"description": "The id of the collection to get the chunks from",
"required": true,
"schema": {
"type": "string",
"format": "uuid"
}
},
{
"name": "page",
"in": "path",
"description": "The page of chunks to get from the collection",
"required": true,
"schema": {
"type": "integer",
"format": "int64",
"minimum": 0
}
}
],
"responses": {
"200": {
"description": "Bookmark'ed chunks present within the specified collection",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookmarkData"
}
}
}
},
"400": {
"description": "Service error relating to getting the collections that the chunk is in",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
}
},
"/api/chunk_collection/{page}": {
"get": {
"tags": [
"chunk_collection"
],
"summary": "get_current_user_collections",
"description": "get_current_user_collections\n\nFetch the collections which belong to the currently logged in user. We are soon going to refactor collections to relate to only datasets instead of datasets and users.",
"operationId": "get_logged_in_user_chunk_collections",
"parameters": [
{
"name": "page",
"in": "path",
"description": "The page of collections to fetch",
"required": true,
"schema": {
"type": "integer",
"format": "int64",
"minimum": 0
}
}
],
"responses": {
"200": {
"description": "The page of collections for the auth'ed user",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CollectionData"
}
}
}
},
"400": {
"description": "Service error relating to getting the collections for the auth'ed user",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
},
"deprecated": true
}
},
"/api/dataset": {
"post": {
"tags": [
"dataset"
],
"summary": "create_dataset",
"description": "create_dataset\n\nCreate a new dataset. The auth'ed user must be an owner of the organization to create a dataset.",
"operationId": "create_dataset",
"requestBody": {
"description": "JSON request payload to create a new dataset",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateDatasetRequest"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Dataset created successfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Dataset"
}
}
}
},
"400": {
"description": "Service error relating to creating the dataset",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DefaultError"
}
}
}
}
}
},