forked from cBioPortal/cbioportal-web-api-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswagger.yaml
717 lines (654 loc) · 18.3 KB
/
swagger.yaml
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
swagger: '2.0'
host: www.cbioportal.org
basePath: /api
schemes:
- http
consumes:
- application/json
produces:
- application/json
info:
version: 0.0.1
title: cBioPortal API
description: The cBioPortal for Cancer Genomics provides APIs for large-scale cancer genomics data sets.
paths:
/cancertypes:
get:
description: Get all cancer types. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/projectionParam'
- $ref: '#/parameters/sizeParam'
- $ref: '#/parameters/pageParam'
responses:
200:
$ref: '#/responses/cancerTypesResponse'
/cancertypes/{cancerTypeId}:
get:
description: Get a cancer type. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/cancerTypeIdPathParam'
responses:
200:
$ref: '#/responses/cancerTypeResponse'
/clinicalattrs:
get:
description: Get all clinical attribute types in the system. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/projectionParam'
- $ref: '#/parameters/sizeParam'
- $ref: '#/parameters/pageParam'
responses:
200:
$ref: '#/responses/clinicalAttributesResponse'
/clinicalattrs/{clinicalAttributeId}:
get:
description: Get a clinical attribute type in the system. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/clinicalAttributeIdPathParam'
responses:
200:
$ref: '#/responses/clinicalAttributeResponse'
/studies:
get:
description: Get all studies. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/projectionParam'
- $ref: '#/parameters/sizeParam'
- $ref: '#/parameters/pageParam'
responses:
200:
$ref: '#/responses/studiesResponse'
/studies/{studyId}:
get:
description: Get a study. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/studyIdPathParam'
responses:
200:
$ref: '#/responses/studyResponse'
/studies/{studyId}/patients:
get:
description: Get all patients in a study. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/projectionParam'
- $ref: '#/parameters/sizeParam'
- $ref: '#/parameters/pageParam'
- $ref: '#/parameters/studyIdPathParam'
responses:
200:
$ref: '#/responses/patientsResponse'
/studies/{studyId}/patients/{patientId}:
get:
description: Get a patient in a study. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/studyIdPathParam'
- $ref: '#/parameters/patientIdPathParam'
responses:
200:
$ref: '#/responses/patientResponse'
/patients/fetch:
post:
description: Fetch patients by list of study ID and patient ID couples. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/projectionParam'
- $ref: '#/parameters/patientIdentifiersBodyParam'
responses:
200:
$ref: '#/responses/patientsResponse'
/patients/query:
post:
description: Query patients by example. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/projectionParam'
- $ref: '#/parameters/sizeParam'
- $ref: '#/parameters/pageParam'
- $ref: '#/parameters/patientBodyParam'
responses:
200:
$ref: '#/responses/patientsResponse'
/studies/{studyId}/patients/{patientId}/samples:
get:
description: Get all samples of a patient in a study. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/projectionParam'
- $ref: '#/parameters/sizeParam'
- $ref: '#/parameters/pageParam'
- $ref: '#/parameters/studyIdPathParam'
- $ref: '#/parameters/patientIdPathParam'
responses:
200:
$ref: '#/responses/samplesResponse'
/studies/{studyId}/samples/{sampleId}:
get:
description: Get a sample in a study. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/studyIdPathParam'
- $ref: '#/parameters/sampleIdPathParam'
responses:
200:
$ref: '#/responses/sampleResponse'
/samples/fetch:
post:
description: Fetch samples by list of study ID and sample ID couples. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/projectionParam'
- $ref: '#/parameters/sampleIdentifiersBodyParam'
responses:
200:
$ref: '#/responses/samplesResponse'
/samples/query:
post:
description: Query samples by example. **(Not Implemented Yet)**
parameters:
- $ref: '#/parameters/projectionParam'
- $ref: '#/parameters/sizeParam'
- $ref: '#/parameters/pageParam'
- $ref: '#/parameters/sampleBodyParam'
responses:
200:
$ref: '#/responses/samplesResponse'
parameters:
projectionParam:
name: projection
in: query
description: |
An optional parameter to specify the type of projection of the response.
- ID **_Returns only id field(s) of the objects._**
- SUMMARY **_Returns only primitive types in the objects. No nested properties or collections.
This is the default projection._**
- ALL **_Returns all properties including nested properties and collections._**
- META **_Returns an empty list in response body and metada about the result collection(count etc.)
in response headers. Different metadata headers may be present for different resources._**
required: false
type: string
enum:
- ID
- SUMMARY
- ALL
- META
default: SUMMARY
pageParam:
name: page
in: query
description: |
An optional parameter to specify the page number of the paginated result.
**_0_** means the first page.
required: false
type: integer
default: 0
minimum: 0
sizeParam:
name: size
in: query
description: |
An optional parameter to specify the page size of the paginated result.
**_1000_** is the max size. **_1_** is the min size.
required: false
type: integer
default: 1000
maximum: 1000
minimum: 1
cancerTypeIdPathParam:
name: cancerTypeId
in: path
description: ID of the cancer type.
required: true
type: string
clinicalAttributeIdPathParam:
name: clinicalAttributeId
in: path
description: ID of the clinical attribute.
required: true
type: string
studyIdPathParam:
name: studyId
in: path
description: ID of the study.
required: true
type: string
patientIdPathParam:
name: patientId
in: path
description: ID of the patient.
required: true
type: string
patientIdentifiersBodyParam:
name: patientIdentifiers
in: body
description: List of IDs of patients.
required: true
schema:
$ref: '#/definitions/PatientIdentifiers'
patientBodyParam:
name: patient
in: body
description: Example patient to be used in query.
required: true
schema:
$ref: "#/definitions/Patient"
sampleIdPathParam:
name: sampleId
in: path
description: ID of the sample.
required: true
type: string
sampleIdentifiersBodyParam:
name: sampleIdentifiers
in: body
description: List of IDs of samples.
required: true
schema:
$ref: '#/definitions/SampleIdentifiers'
sampleBodyParam:
name: sample
in: body
description: Example sample to be used in query.
required: true
schema:
$ref: "#/definitions/Sample"
responses:
cancerTypeResponse:
description: OK
schema:
$ref: '#/definitions/CancerType'
cancerTypesResponse:
description: OK
schema:
$ref: '#/definitions/CancerTypes'
headers:
X-Total-Count:
description: Returned only if projection type is META.
type: integer
clinicalAttributeResponse:
description: OK
schema:
$ref: '#/definitions/ClinicalAttribute'
clinicalAttributesResponse:
description: OK
schema:
$ref: '#/definitions/ClinicalAttributes'
headers:
X-Total-Count:
description: Returned only if projection type is META.
type: integer
studyResponse:
description: OK
schema:
$ref: '#/definitions/Study'
studiesResponse:
description: OK
schema:
$ref: '#/definitions/Studies'
headers:
X-Total-Count:
description: Returned only if projection type is META.
type: integer
patientResponse:
description: OK
schema:
$ref: '#/definitions/Patient'
patientsResponse:
description: OK
schema:
$ref: '#/definitions/Patients'
headers:
X-Total-Count:
description: Returned only if projection type is META.
type: integer
sampleResponse:
description: OK
schema:
$ref: '#/definitions/Sample'
samplesResponse:
description: OK
schema:
$ref: '#/definitions/Samples'
headers:
X-Total-Count:
description: Returned only if projection type is META.
type: integer
definitions:
CancerType:
type: object
properties:
id:
type: string
name:
type: string
keywords:
type: string
color:
type: string
shortName:
type: string
parent:
type: string
example:
id: mychs
name: Myxoid Chondrosarcoma
keywords: myxoid chondrosarcoma
color: White
shortName: MYCHS
parent: chs
CancerTypes:
type: array
items:
$ref: '#/definitions/CancerType'
example:
- id: unec
name: Uterine Neuroendocrine Carcinoma
keywords: uterine neuroendocrine carcinoma
color: PeachPuff
shortName: UNEC
parent: ucec
- id: nmzl
name: Nodal Marginal Zone Lymphoma
keywords: nodal marginal zone lymphoma
color: LimeGreen
shortName: NMZL
parent: bcl
Study:
type: object
properties:
id:
type: string
name:
type: string
shortName:
type: string
description:
type: string
public:
type: boolean
pmid:
type: string
citation:
type: string
groups:
type: string
status:
type: integer
importDate:
type: string
format: date-time
cancerTypeId:
type: string
cancerType:
$ref: '#/definitions/CancerType'
example:
id: acc_tcga
name: Adrenocortical Carcinoma (TCGA, Provisional)
shortName: ACC (TCGA)
description: TCGA Adrenocortical Carcinoma; raw data at the <A HREF="https://tcga-data.nci.nih.gov/">NCI</A>.
public: true
pmid: 22634756
citation: Fujimoto et al. Nature Genetics 2012.
groups: PUBLIC
status: 1
importDate: 2015-12-21 09:32:09
cancerTypeId: acc
Studies:
type: array
items:
$ref: '#/definitions/Study'
example:
- id: blca_tcga
name: Bladder Urothelial Carcinoma (TCGA, Provisional)
shortName: Bladder (TCGA)
description: TCGA Bladder Urothelial Carcinoma; raw data at the <A HREF="https://tcga-data.nci.nih.gov/">NCI</A>.
public: true
pmid: 22820256
citation: Pugh et al. Nature 2012.
groups: PUBLIC
status: 1
importDate: 2015-12-21 10:27:04
cancerTypeId: blca
- id: brca_tcga
name: Breast Invasive Carcinoma (TCGA, Provisional)
shortName: Breast (TCGA)
description: TCGA Breast Invasive Carcinoma; raw data at the <A HREF="https://tcga-data.nci.nih.gov/">NCI</A>.
public: true
pmid: 22722839
citation: Grasso et al. Nature 2012.
groups: PUBLIC
status: 1
importDate: 2015-12-21 12:41:26
cancerTypeId: brca
Patient:
type: object
properties:
id:
type: string
study:
$ref: '#/definitions/Study'
clinicalData:
$ref: '#/definitions/ClinicalData'
example:
id: TCGA-PK-A5HC
clinicalData:
- id: PROSPECTIVE_COLLECTION
name: Tissue Prospective Collection Indicator
description: Text indicator for the time frame of tissue procurement, indicating that the tissue was procured in parallel to the project.
priority: 1
dataType: STRING
patientAttribute: true
value: YES
- id: RETROSPECTIVE_COLLECTION
name: Tissue Retrospective Collection Indicator
description: Text indicator for the time frame of tissue procurement, indicating that the tissue was obtained and stored prior to the initiation of the project.
priority: 1
dataType: STRING
patientAttribute: true
value: NO
Patients:
type: array
items:
$ref: '#/definitions/Patient'
example:
- id: TCGA-PK-A5HC
clinicalData:
- id: PROSPECTIVE_COLLECTION
name: Tissue Prospective Collection Indicator
description: Text indicator for the time frame of tissue procurement, indicating that the tissue was procured in parallel to the project.
priority: 1
dataType: STRING
patientAttribute: true
value: YES
- id: RETROSPECTIVE_COLLECTION
name: Tissue Retrospective Collection Indicator
description: Text indicator for the time frame of tissue procurement, indicating that the tissue was obtained and stored prior to the initiation of the project.
priority: 1
dataType: STRING
patientAttribute: true
value: NO
- id: TCGA-ZF-AA5P
clinicalData:
- id: GENDER
name: Person Gender
description: Patient gender.
priority: 1
dataType: STRING
patientAttribute: true
value: FEMALE
- id: RACE
name: Race Category
description: The text for reporting information about race.
priority: 1
dataType: STRING
patientAttribute: true
value: ASIAN
PatientIdentifiers:
type: array
items:
type: object
properties:
id:
type: string
studyId:
type: string
example:
- id: TCGA-PK-A5HC
studyId: acc_tcga
- id: TCGA-ZF-AA5P
studyId: blca_tcga
ClinicalAttribute:
type: object
properties:
id:
type: string
name:
type: string
description:
type: string
priority:
type: integer
dataType:
type: string
enum:
- STRING
- NUMBER
patientAttribute:
type: boolean
example:
id: PATIENT_ID
name: Patient Identifier
description: Identifier to uniquely specify a patient.
priority: 1
dataType: STRING
patientAttribute: true
ClinicalAttributes:
type: array
items:
$ref: '#/definitions/ClinicalAttribute'
example:
- id: OTHER_PATIENT_ID
name: Other Patient ID
description: Legacy DMP patient identifier (DMPnnnn)
priority: 1
dataType: STRING
patientAttribute: true
- id: FORM_COMPLETION_DATE
name: Form completion date
description: Form completion date
priority: 1
dataType: STRING
patientAttribute: true
ClinicalData:
type: array
items:
allOf:
- $ref: '#/definitions/ClinicalAttribute'
- type: object
properties:
value:
type: string
example:
- id: OTHER_PATIENT_ID
name: Other Patient ID
description: Legacy DMP patient identifier (DMPnnnn)
priority: 1
dataType: STRING
patientAttribute: true
value: 54321
- id: FORM_COMPLETION_DATE
name: Form completion date
description: Form completion date
priority: 1
dataType: STRING
patientAttribute: true
value: 2015-12-21 09:32:09
Sample:
type: object
properties:
id:
type: string
type:
type: string
enum:
- Primary Solid Tumor
- Recurrent Solid Tumor
- Primary Blood Tumor
- Recurrent Blood Tumor
- Metastatic
- Blood Derived Normal
- Solid Tissues Normal
cancerTypeId:
type: string
clinicalData:
$ref: '#/definitions/ClinicalData'
patient:
$ref: '#/definitions/Patient'
example:
id: TCGA-PK-A5HC-01
type: Primary Solid Tumor
cancerTypeId: acc
clinicalData:
- id: OTHER_SAMPLE_ID
name: Other Sample ID
description: Legacy DMP sample identifier (DMPnnnn)
priority: 1
dataType: STRING
patientAttribute: false
value: 5C631CE8-F96A-4C35-A459-556FC4AB21E1
- id: DAYS_TO_COLLECTION
name: Days to Sample Collection.
description: Days to sample collection.
priority: 1
dataType: STRING
patientAttribute: false
value: 276
Samples:
type: array
items:
$ref: '#/definitions/Sample'
example:
- id: TCGA-P6-A5OH-01
type: Recurrent Solid Tumor
cancerTypeId: acc
clinicalData:
- id: OTHER_SAMPLE_ID
name: Other Sample ID
description: Legacy DMP sample identifier (DMPnnnn)
priority: 1
dataType: STRING
patientAttribute: false
value: 5C631CE8-F96A-4C35-A459-556FC4AB21E1
- id: DAYS_TO_COLLECTION
name: Days to Sample Collection.
description: Days to sample collection.
priority: 1
dataType: STRING
patientAttribute: false
value: 276
- id: TCGA-OR-A5LI-01
type: Primary Solid Tumor
cancerTypeId: blca
clinicalData:
- id: IS_FFPE
name: Is FFPE
description: If the sample is from FFPE
priority: 1
dataType: STRING
patientAttribute: false
value: NO
- id: OCT_EMBEDDED
name: Oct embedded
description: Oct embedded
priority: 1
dataType: STRING
patientAttribute: false
value: false
SampleIdentifiers:
type: array
items:
type: object
properties:
id:
type: string
studyId:
type: string
example:
- id: TCGA-P6-A5OH-01
studyId: acc_tcga
- id: TCGA-OR-A5LI-01
studyId: blca_tcga