This repository has been archived by the owner on Apr 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
covid-internal-openapi.json
628 lines (628 loc) · 23.1 KB
/
covid-internal-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
{
"openapi": "3.0.2",
"info": {
"title": "COVID Tracking Internal API",
"version": "0.0.1",
"description": "COVID Tracking Internal API"
},
"servers": [
{
"url": "https://internalapi.covidtracking.com/api/v1",
"description": ""
}
],
"paths": {
"/public/states/daily": {
"get": {
"tags": [
"public"
],
"parameters": [
{
"name": "preview",
"description": "If true, returns results using the most recent data in the preview state. \nOtherwise, only published data is returned.",
"schema": {
"type": "boolean"
},
"in": "query"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CoreDataHistoricalState"
}
}
},
"description": "States daily time series"
}
},
"summary": "States historical data. Entries saved each day at 4 pm ET."
}
},
"/public/us/daily": {
"get": {
"tags": [
"public"
],
"parameters": [
{
"name": "preview",
"description": "If true, returns results using the most recent data in the preview state. \nOtherwise, only published data is returned.",
"schema": {
"type": "boolean"
},
"in": "query"
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CoreDataHistorical"
}
}
}
},
"description": "Daily time series data"
}
},
"summary": "US historical data. Entries saved each day at 4 pm ET."
}
},
"/batches": {
"get": {
"tags": [
"batches"
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Batch"
}
}
}
},
"description": "Retrieve all known batches"
}
},
"summary": "Get all known batches"
},
"post": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BatchForPush"
}
}
},
"required": true
},
"tags": [
"batches"
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BatchPostResult"
}
}
},
"description": "successful operation"
},
"400": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IntegrityErrors"
}
}
},
"description": "Data integrity validation failed"
}
},
"summary": "Push a new batch of data to the database",
"description": "The newly added core data will be in the preview state until published. \nUpdated StateInfo will be immediately edited."
}
},
"/batches/{batchId}": {
"summary": "Retrieve a batch",
"get": {
"tags": [
"batches"
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Batch"
}
}
},
"description": "Retrieve a batch"
},
"404": {
"description": "No such batch ID exists"
}
},
"summary": "Get a batch"
},
"delete": {
"tags": [
"batches"
],
"responses": {
"200": {
"description": "Batch removed"
},
"404": {
"description": "Batch ID does not exist"
},
"405": {
"description": "Batch cannot be deleted because it is in the published state"
}
},
"summary": "Remove batch",
"description": "This operation is only applicable to batches in the preview state. Published batches cannot be removed."
},
"parameters": [
{
"examples": {
"exampleBatchId": {
"value": "1234"
}
},
"name": "batchId",
"description": "The batch ID to manipulate",
"schema": {
"type": "integer"
},
"in": "path",
"required": true
}
]
},
"/batches/{batchId}/publish": {
"post": {
"tags": [
"batches"
],
"parameters": [
{
"name": "batchId",
"description": "The batch ID to be published (must be in the preview state). ",
"schema": {
"type": "integer"
},
"in": "path",
"required": true
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BatchPostResult"
}
}
},
"description": "Batch has been sucuessfully published"
},
"404": {
"description": "No batch ID exists with the specified batchId"
}
},
"summary": "Publish batch",
"description": "Publish a batch currently in the preview state"
},
"parameters": [
{
"name": "batchId",
"description": "ID of the batch to publish",
"schema": {
"type": "integer"
},
"in": "path",
"required": true
}
]
},
"/public/states/info": {
"summary": "Retrieves the list of states and associated metadata",
"description": "The project includes Washington DC and US territories as states",
"get": {
"tags": [
"public"
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/StateInfo"
}
}
}
},
"description": "successful operation"
}
},
"summary": "Retrieve state metadata"
}
},
"/batches/edit": {
"summary": "Submit a set of rows to edit",
"description": "Note that it is expected that each CoreData row has an existing corresponding row already stored in the DB for the state and date it represents.",
"post": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BatchForEdit"
}
}
},
"required": true
},
"tags": [
"batches"
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BatchPostResult"
}
}
},
"description": "successful operation"
},
"400": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/IntegrityErrors"
}
}
},
"description": "Data integrity validation failed"
}
},
"summary": "Push an \"edit\" batch of data to the database",
"description": "These core data rows will be in the preview state until this edit batch is published."
}
}
},
"components": {
"schemas": {
"CoreData": {
"$ref": "https://raw.githubusercontent.com/COVID19Tracking/covid-api-specs/master/covid-shared-datatypes-openapi.json#/components/schemas/CoreData"
},
"StateInfo": {
"$ref": "https://raw.githubusercontent.com/COVID19Tracking/covid-api-specs/master/covid-shared-datatypes-openapi.json#/components/schemas/StateInfo"
},
"BatchForPush": {
"description": "A full set of data from the spreadsheet to be sent in a push",
"required": [
"context"
],
"type": "object",
"properties": {
"context": {
"$ref": "#/components/schemas/PushContext",
"description": ""
},
"states": {
"description": "",
"type": "array",
"items": {
"$ref": "#/components/schemas/StateInfo"
}
},
"coreData": {
"description": "",
"type": "array",
"items": {
"$ref": "#/components/schemas/CoreDataInternalState"
}
}
}
},
"PushContext": {
"description": "Metadata about a push",
"required": [
"dataEntryType"
],
"type": "object",
"properties": {
"shiftLead": {
"description": "An identifier for the shift lead responsible for the batch",
"type": "string"
},
"batchNote": {
"description": "Additonal notes explaining the batch",
"type": "string"
},
"dataEntryType": {
"description": "Describes the type of batch. A daily push?",
"enum": [
"daily",
"edit"
],
"type": "string"
}
}
},
"BatchPostResult": {
"title": "Root Type for BatchPostResult",
"description": "Returned by a sucuessful batch operation",
"required": [
"batchId",
"isPublished"
],
"type": "object",
"properties": {
"batchId": {
"format": "int32",
"description": "The ID of the batch operation",
"type": "integer"
},
"isPublished": {
"description": "True if the batch is in the published state, false if it is in the preview state",
"type": "boolean"
}
},
"example": {
"batchId": 123,
"isPublished": false
}
},
"CoreDataInternal": {
"description": "Data fields pushed from the data entry spreadsheet to the database, including all CoreData",
"type": "object",
"allOf": [
{
"type": "object",
"properties": {
"privateNotes": {
"description": "Private notes from the data entry team",
"type": "string"
},
"checker": {
"description": "An identifier (typically initials) for the checker from the Data Entry team",
"type": "string"
},
"doubleChecker": {
"description": "An identifier (typically initials) for the double checker from the Data Entry team",
"type": "string"
},
"dataQualityGrade": {
"description": "",
"type": "string"
},
"lastUpdateIsoUtc": {
"format": "date-time",
"description": "The \"as-of\" datetime of the data source (not when the data was published)",
"type": "string"
},
"dateChecked": {
"format": "date-time",
"description": "The datetime we last visited their website",
"type": "string"
}
}
},
{
"$ref": "#/components/schemas/CoreData"
}
]
},
"IntegrityErrors": {
"description": "Data integrity check errors ",
"type": "object",
"properties": {
"errors": {
"type": "array",
"items": {
"type": "string"
}
}
},
"example": {
"errors": [
"State 'NY' missing required value 'date'"
]
}
},
"Batch": {
"description": "",
"required": [
"batchId"
],
"type": "object",
"properties": {
"batchId": {
"description": "",
"type": "integer"
},
"createdAt": {
"format": "date-time",
"description": "",
"type": "string"
},
"publishedAt": {
"format": "date-time",
"description": "",
"type": "string"
},
"shiftLead": {
"description": "",
"type": "string"
},
"batchNote": {
"description": "",
"type": "string"
},
"dataEntryType": {
"description": "",
"type": "string"
},
"isPublished": {
"description": "",
"type": "boolean"
},
"isRevision": {
"description": "",
"type": "boolean"
},
"coreData": {
"$ref": "#/components/schemas/CoreDataInternal",
"description": ""
}
}
},
"StateCoreData": {
"description": "",
"type": "object",
"allOf": [
{
"required": [
"state"
],
"type": "object",
"properties": {
"state": {
"description": "State abbreviation ",
"type": "string"
}
}
},
{
"$ref": "#/components/schemas/CoreData"
}
]
},
"TimeSeries": {
"description": "",
"required": [
"date"
],
"type": "object",
"properties": {
"date": {
"format": "date",
"description": "",
"type": "string"
}
}
},
"CoreDataHistorical": {
"description": "",
"type": "object",
"allOf": [
{
"type": "object"
},
{
"$ref": "#/components/schemas/TimeSeries"
},
{
"$ref": "#/components/schemas/CoreDataInternal"
}
]
},
"CoreDataHistoricalState": {
"description": "",
"required": [
"state"
],
"type": "object",
"allOf": [
{
"type": "object"
},
{
"$ref": "#/components/schemas/TimeSeries"
},
{
"$ref": "#/components/schemas/CoreDataInternalState"
}
]
},
"CoreDataInternalState": {
"description": "",
"type": "object",
"allOf": [
{
"type": "object",
"properties": {
"state": {
"description": "",
"type": "string"
}
}
},
{
"$ref": "#/components/schemas/CoreDataInternal"
}
]
},
"CoreDataForPush": {
"description": "",
"type": "object",
"allOf": [
{
"type": "object",
"properties": {
"date": {
"format": "dataDate",
"description": "",
"type": "string"
}
}
},
{
"$ref": "#/components/schemas/CoreDataInternalState"
}
]
},
"BatchForEdit": {
"description": "A subset of data from the spreadsheet to be sent in an edit push",
"required": [
"context"
],
"type": "object",
"properties": {
"context": {
"$ref": "#/components/schemas/PushContext",
"description": "Note that the dataEntryType enum here must be set to \"edit\"."
},
"coreData": {
"description": "",
"type": "array",
"items": {
"$ref": "#/components/schemas/CoreDataInternalState"
}
}
}
}
}
}
}