-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgor-query-api.json
More file actions
1238 lines (1238 loc) · 44.7 KB
/
Copy pathgor-query-api.json
File metadata and controls
1238 lines (1238 loc) · 44.7 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
{
"basePath": "",
"consumes": [
"application/json"
],
"definitions": {
"Category": {
"properties": {
"create_date": {
"description": "ISO8601 formatted create date",
"format": "date-time",
"type": "string"
},
"links": {
"$ref": "#/definitions/CategoryLinks"
},
"name": {
"description": "The name of a category within in an organization",
"type": "string"
},
"organization": {
"description": "The name of a organization that owns this category",
"type": "string"
}
},
"type": "object"
},
"CategoryLinks": {
"properties": {
"organization": {
"description": "Organization that owns this category",
"type": "string"
},
"self": {
"description": "Templates for this category",
"type": "string"
}
},
"type": "object"
},
"Error": {
"properties": {
"code": {
"description": "HTTP status code",
"example": 200,
"type": "integer"
},
"error": {
"$ref": "#/definitions/InnerError"
},
"message": {
"type": "string"
}
},
"type": "object"
},
"InnerError": {
"properties": {
"description": {
"type": "string"
},
"request_id": {
"type": "string"
},
"type": {
"type": "string"
}
},
"type": "object"
},
"Organization": {
"properties": {
"create_date": {
"description": "ISO8601 formatted create date",
"format": "date-time",
"type": "string"
},
"links": {
"$ref": "#/definitions/OrganizationLinks"
},
"name": {
"description": "Globally unique name for an organization",
"type": "string"
},
"protected": {
"description": "Is this organization only writable by admin?",
"type": "boolean"
}
},
"type": "object"
},
"OrganizationLinks": {
"properties": {
"self": {
"description": "Categories for this organization",
"type": "string"
}
},
"type": "object"
},
"PerspectiveLinks": {
"properties": {
"name": {
"description": "name of the perspective",
"type": "string"
},
"ref": {
"description": "link to resource",
"type": "string"
}
},
"type": "object"
},
"Query": {
"properties": {
"args": {
"description": "Arguments passed to the template (only if template query)",
"type": "object"
},
"available": {
"description": "Are results for this query available",
"type": "boolean"
},
"complete_date": {
"description": "ISO8601 formatted complete date",
"format": "date-time",
"type": "string"
},
"date_submitted": {
"description": "ISO8601 formatted submit date (for backwards-compatibility)",
"format": "date-time",
"type": "string"
},
"details": {
"description": "Additional information about the query",
"type": "object"
},
"error": {
"description": "Error information about the query if it FAILED. Includes 'description' and 'type' string keys",
"type": "object"
},
"id": {
"type": "integer"
},
"links": {
"allOf": [
{
"$ref": "#/definitions/QueryLinks"
}
],
"description": "The URLs to the resources related to this query"
},
"progress": {
"description": "Progress information for running job",
"type": "object"
},
"project_name": {
"description": "The project into which the query was submitted",
"type": "string"
},
"query": {
"description": "The query string that was executed (if any)",
"type": "string"
},
"query_id": {
"description": "Unique ID of this query",
"type": "integer"
},
"relations": {
"description": "Virtual relations associated with the query",
"type": "object"
},
"results": {
"description": "Results, equal or less than requested rows, normally null. To get the rest, query the result endpoint.",
"type": "object"
},
"start_date": {
"description": "ISO8601 formatted start date",
"format": "date-time",
"type": "string"
},
"stats": {
"allOf": [
{
"$ref": "#/definitions/QueryStats"
}
],
"description": "Various stats about the query"
},
"status": {
"description": "The current status of the query",
"enum": [
"PENDING",
"RUNNING",
"DONE",
"CANCELLING",
"CANCELLED",
"FAILED"
],
"example": "PENDING",
"type": "string"
},
"submit_date": {
"description": "ISO8601 formatted submit date",
"format": "date-time",
"type": "string"
},
"template_name": {
"description": "The template associated with this query (if any)",
"type": "string"
},
"user_name": {
"description": "The user that submitted the query",
"type": "string"
}
},
"type": "object"
},
"QueryLinks": {
"properties": {
"perspectives": {
"items": {
"$ref": "#/definitions/PerspectiveLinks"
},
"type": "array"
},
"result": {
"description": "Fully qualified URL of the results for the query, once it is finished",
"type": "string"
},
"self": {
"description": "Fully qualified URL of the template query resource itself",
"type": "string"
}
},
"type": "object"
},
"QueryStats": {
"properties": {
"column_count": {
"description": "Number of columns in results",
"type": "integer"
},
"end_timestamp": {
"description": "Unix timestamp when the GOR Server finished running the query",
"type": "integer"
},
"line_count": {
"description": "Number of lines in results",
"type": "integer"
},
"size_bytes": {
"description": "Size of the results in bytes",
"type": "integer"
},
"start_timestamp": {
"description": "Unix timestamp when the GOR Server started running the query",
"type": "integer"
},
"submit_timestamp": {
"description": "Unix timestamp when the query was submitted to the GOR Server",
"type": "integer"
}
},
"type": "object"
},
"RenderedTemplate": {
"properties": {
"query": {
"description": "rendered template query",
"type": "string"
}
},
"type": "object"
},
"SimpleQuery": {
"properties": {
"links": {
"allOf": [
{
"$ref": "#/definitions/QueryLinks"
}
],
"description": "The URLs to the resources related to this query"
},
"project_name": {
"description": "The project into which the query was submitted",
"type": "string"
},
"query_id": {
"description": "Unique ID of this query",
"type": "integer"
},
"status": {
"description": "The current status of the query",
"enum": [
"PENDING",
"RUNNING",
"DONE",
"CANCELLING",
"CANCELLED",
"FAILED"
],
"example": "PENDING",
"type": "string"
},
"submit_date": {
"description": "ISO8601 formatted submit date",
"format": "date-time",
"type": "string"
},
"user_name": {
"description": "The user that submitted the query",
"type": "string"
}
},
"type": "object"
},
"Template": {
"properties": {
"arguments": {
"description": "Defined arguments this query template accepts",
"type": "object"
},
"category": {
"description": "The category that this template belongs to",
"type": "string"
},
"column_metadata": {
"description": "The package version of the query template",
"type": "string"
},
"create_date": {
"description": "ISO8601 formatted create date",
"format": "date-time",
"type": "string"
},
"file_contents": {
"description": "The raw contents of the query template YAML file",
"type": "string"
},
"full_name": {
"description": "The globally unique name of a query template",
"type": "string"
},
"id": {
"description": "Unique ID for this template",
"type": "string"
},
"links": {
"$ref": "#/definitions/TemplateLinks"
},
"list_description": {
"description": "The description of a query template",
"type": "string"
},
"min_ref_data_version": {
"description": "Minimum reference data version for this template",
"type": "string"
},
"name": {
"description": "The unique name of a query template within a given category",
"type": "string"
},
"organization": {
"description": "The organization that this template belongs to",
"type": "string"
},
"perspectives": {
"description": "Available perspectives for this query template",
"type": "object"
},
"user": {
"description": "The user that created this template",
"type": "string"
},
"version": {
"description": "Version info for this query template",
"type": "string"
}
},
"type": "object"
},
"TemplateLinks": {
"properties": {
"category": {
"description": "Category that this template is in",
"type": "string"
},
"execute": {
"description": "Endpoint for executing the template",
"type": "string"
},
"organization": {
"description": "Organization that owns the category",
"type": "string"
},
"render": {
"description": "Endpoint for rendering the template",
"type": "string"
},
"self": {
"description": "The Template Resource",
"type": "string"
}
},
"type": "object"
},
"TemplateSimple": {
"properties": {
"category": {
"description": "The category that this template belongs to",
"type": "string"
},
"create_date": {
"description": "ISO8601 formatted create date",
"format": "date-time",
"type": "string"
},
"full_name": {
"description": "The globally unique name of a query template",
"type": "string"
},
"id": {
"description": "Unique ID for this template",
"type": "string"
},
"links": {
"$ref": "#/definitions/TemplateLinks"
},
"list_description": {
"description": "The description of a query template",
"type": "string"
},
"name": {
"description": "The unique name of a query template within a given category",
"type": "string"
},
"organization": {
"description": "The organization that this template belongs to",
"type": "string"
},
"version": {
"description": "Version info for this query template",
"type": "string"
}
},
"type": "object"
}
},
"info": {
"description": "GOR Query API executes and manages GOR queries, query templates, and templated queries (queries executed from a rendered template).\n\nGOR query results can be returned as JSON or raw tab-formatted values.\n \nOnce a query is complete, its GOR results can be retrieved. If the Accept HTTP header is 'application/json' then JSON is returned. Otherwise raw tab-separated values are returned (TSV, 'application/tab-separated-values').\n\nThe JSON output is a somewhat freeform object-in-object list-of-maps structure:\n\n\n [{'column1': 'value-l1c1', 'column2': 'value-l1c1'}, {'column1': 'value-l1c1', 'column2': 'value-l1c1'}]\nIf the Accept header is 'application/json+compact' then the JSON follows the following format:\n{ 'header': ['column1', 'column2'], 'data: { [[value-l1c1','value-l1c1'], [value-l1c1','value-l1c1']] }}\nFor information on how queries or templates work,or information on the YAML data required to create new templates, please refer to CSA/GOR manuals or the documentation in the GOR Developer Console in your instance.",
"title": "GOR Query API",
"version": "1.9.0"
},
"paths": {
"/api/query/": {
"get": {
"description": "Get information about the service and currently authenticated user, if available.\n\n\n\nThe *json_limit* constant defines how many lines of query results may be returned in a single request.\nIf a result is longer than that then pagination kicks in.",
"operationId": "get_root",
"responses": {
"200": {
"description": "Success"
}
},
"summary": "API Information",
"tags": [
"root"
]
}
},
"/api/query/query/": {
"get": {
"operationId": "get_queries",
"parameters": [
{
"description": "Project to view",
"in": "query",
"name": "project",
"type": "string"
},
{
"description": "Filter queries by status",
"in": "query",
"name": "status",
"type": "string"
},
{
"description": "User ID of the submitter",
"in": "query",
"name": "user_id",
"type": "integer"
},
{
"description": "User name of the submitter",
"in": "query",
"name": "user_name",
"type": "string"
},
{
"default": 50,
"description": "Number of results to return",
"in": "query",
"name": "limit",
"type": "integer"
},
{
"description": "An optional fields mask",
"format": "mask",
"in": "header",
"name": "X-Fields",
"type": "string"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"items": {
"$ref": "#/definitions/SimpleQuery"
},
"type": "array"
}
}
},
"tags": [
"query"
]
},
"post": {
"description": "The query is validated and submitted to the GOR server for execution.\nResults are delivered in a dedicated results endpoint under here.",
"operationId": "post_queries",
"parameters": [
{
"description": "The GOR Query we want executed (e.g. ``\"gor #dbsnp# | top 100\"``)",
"in": "query",
"name": "query",
"required": true,
"type": "string"
},
{
"description": "The name of the project the query should be executed on",
"in": "query",
"name": "project",
"required": true,
"type": "string"
},
{
"default": "default",
"description": "The type of the job being run, for queue routing purposes",
"in": "query",
"name": "type",
"type": "string"
},
{
"description": "The file that the query results should be saved in (must start with user_data/)",
"in": "query",
"name": "persist",
"type": "string"
},
{
"collectionFormat": "multi",
"description": "Virtual relations to be resolved within the query",
"in": "query",
"items": {
"type": "string"
},
"name": "relations",
"type": "array"
},
{
"description": "Number of seconds to wait for query to complete before returning PENDING",
"in": "query",
"name": "wait",
"type": "number"
},
{
"description": "Number of rows to return from this call. wait must be larger than zero",
"in": "query",
"name": "results",
"type": "integer"
},
{
"description": "An optional fields mask",
"format": "mask",
"in": "header",
"name": "X-Fields",
"type": "string"
}
],
"responses": {
"201": {
"description": "Success",
"schema": {
"$ref": "#/definitions/Query"
}
},
"400": {
"description": "Unauthorized"
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Not found.",
"schema": {
"$ref": "#/definitions/Error"
}
}
},
"summary": "Submit a GOR query",
"tags": [
"query"
]
}
},
"/api/query/query/{query_id}": {
"delete": {
"operationId": "delete_query",
"parameters": [
{
"description": "An optional fields mask",
"format": "mask",
"in": "header",
"name": "X-Fields",
"type": "string"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/Query"
}
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Not found.",
"schema": {
"$ref": "#/definitions/Error"
}
}
},
"summary": "Cancels a running query",
"tags": [
"query"
]
},
"get": {
"operationId": "get_query",
"parameters": [
{
"description": "An optional fields mask",
"format": "mask",
"in": "header",
"name": "X-Fields",
"type": "string"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/Query"
}
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Not found.",
"schema": {
"$ref": "#/definitions/Error"
}
}
},
"summary": "Check the status of a query",
"tags": [
"query"
]
},
"parameters": [
{
"description": "The ID of a query that has been submitted to GOR",
"in": "path",
"name": "query_id",
"required": true,
"type": "integer"
}
]
},
"/api/query/query/{query_id}/result": {
"get": {
"description": "Once a query is complete, its GOR results can be retrieved. If the Accept HTTP header is 'application/json',\nthen JSON is returned. Otherwise raw tab-separated values are returned. As JSON, each line will be returned as\na key-value object-in-object format approximately like this:\n\n [{\"column1\": \"value-l1c1\", \"column2\": \"value-l1c1\"},\n {\"column1\": \"value-l1c1\", \"column2\": \"value-l1c1}]\n\nPlease note that in JSON format there is a limit on how many lines can be returned at a time.\nIn that case results will include pagination links (\"next\").",
"operationId": "get_result",
"parameters": [
{
"description": "GOR query filter to apply to results",
"in": "query",
"name": "perspective",
"type": "string"
},
{
"description": "GOR query filter to apply to results",
"in": "query",
"name": "filter",
"type": "string"
},
{
"default": 100,
"description": "Maximum number of rows to return",
"in": "query",
"name": "limit",
"type": "integer"
},
{
"default": 0,
"description": "Number of rows to skip",
"in": "query",
"name": "offset",
"type": "integer"
},
{
"description": "Comma separated list of columns to sort on, including direction. Example: `POS asc,Chrom desc`",
"in": "query",
"name": "sort",
"type": "string"
},
{
"default": false,
"description": "Skip the header, used for paging",
"in": "query",
"name": "skipheader",
"type": "boolean"
}
],
"produces": [
"application/json",
"application/json+compact",
"text/tab-separated-values"
],
"responses": {
"200": {
"description": "Sucessful. Results in JSON/TSV format; See above."
},
"401": {
"description": "Unauthorized"
},
"403": {
"description": "Forbidden"
},
"404": {
"description": "Not found. Query not found, or no results exist yet. See error message.",
"schema": {
"$ref": "#/definitions/Error"
}
}
},
"summary": "Gets the results of a completed query",
"tags": [
"query"
]
},
"parameters": [
{
"description": "The ID of a query that has been submitted to GOR",
"in": "path",
"name": "query_id",
"required": true,
"type": "string"
}
]
},
"/api/query/templates/": {
"get": {
"operationId": "get_templates",
"parameters": [
{
"description": "An optional fields mask",
"format": "mask",
"in": "header",
"name": "X-Fields",
"type": "string"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"items": {
"$ref": "#/definitions/Organization"
},
"type": "array"
}
}
},
"summary": "Return a list of organizations",
"tags": [
"templates"
]
},
"post": {
"description": "Assumes the organization and category come from the yaml string\nand creates the resources as needed.\n\nFor information on YAML data to create new templates, please refer to CSA/GOR manuals or the documentation\navailable in the GOR Developer Console in your instance.",
"operationId": "post_templates",
"parameters": [
{
"description": "The query template represented as a YAML string. See above.",
"in": "query",
"name": "yaml",
"required": true,
"type": "string"
},
{
"description": "An optional fields mask",
"format": "mask",
"in": "header",
"name": "X-Fields",
"type": "string"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/TemplateSimple"
}
}
},
"summary": "Receives and stores a new template from YAML",
"tags": [
"templates"
]
}
},
"/api/query/templates/{organization}/": {
"delete": {
"operationId": "delete_categories",
"responses": {
"200": {
"description": "Success"
}
},
"summary": "Delete an organization including all categories and templates",
"tags": [
"templates"
]
},
"get": {
"operationId": "get_categories",
"parameters": [
{
"description": "An optional fields mask",
"format": "mask",
"in": "header",
"name": "X-Fields",
"type": "string"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"items": {
"$ref": "#/definitions/Category"
},
"type": "array"
}
}
},
"summary": "Return a list of categories",
"tags": [
"templates"
]
},
"parameters": [
{
"in": "path",
"name": "organization",
"required": true,
"type": "string"
}
]
},
"/api/query/templates/{organization}/{category}/": {
"delete": {
"operationId": "delete_actual_templates",
"responses": {
"200": {
"description": "Success"
}
},
"summary": "Delete a category including all templates",
"tags": [
"templates"
]
},
"get": {
"operationId": "get_actual_templates",
"parameters": [
{
"description": "An optional fields mask",
"format": "mask",
"in": "header",
"name": "X-Fields",
"type": "string"
}
],
"responses": {
"200": {
"description": "Success",
"schema": {
"items": {
"$ref": "#/definitions/TemplateSimple"
},
"type": "array"
}
}
},
"summary": "Return all templates in this category",
"tags": [
"templates"
]
},
"parameters": [
{
"in": "path",
"name": "organization",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
}
]
},
"/api/query/templates/{organization}/{category}/{name}/": {
"delete": {
"operationId": "delete_template_by_name",
"responses": {
"200": {
"description": "Success"
}
},
"summary": "Delete a template",
"tags": [
"templates"
]
},
"get": {
"operationId": "get_template_by_name",
"produces": [
"application/json",
"text/plain"
],
"responses": {
"200": {
"description": "Success",
"schema": {
"$ref": "#/definitions/Template"
}
}
},
"summary": "Return a single template which satisfies the criteria",
"tags": [
"templates"
]
},
"parameters": [
{
"in": "path",
"name": "organization",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "category",
"required": true,
"type": "string"
},
{
"in": "path",
"name": "name",
"required": true,
"type": "string"
}