-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfacility.json
1839 lines (1839 loc) · 99.3 KB
/
facility.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
{
"id": "anag-cw7u",
"name": "COVID-19 Reported Patient Impact and Hospital Capacity by Facility",
"assetType": "dataset",
"attribution": "U.S. Department of Health & Human Services",
"averageRating": 0,
"category": "Hospital",
"createdAt": 1607786553,
"description": "The following dataset provides facility-level data for hospital utilization aggregated on a weekly basis (Friday to Thursday). These are derived from reports with facility-level granularity across two main sources: (1) HHS TeleTracking, and (2) reporting provided directly to HHS Protect by state/territorial health departments on behalf of their healthcare facilities.\n\nThe hospital population includes all hospitals registered with Centers for Medicare & Medicaid Services (CMS) as of June 1, 2020. It includes non-CMS hospitals that have reported since July 15, 2020. It does not include psychiatric, rehabilitation, Indian Health Service (IHS) facilities, U.S. Department of Veterans Affairs (VA) facilities, Defense Health Agency (DHA) facilities, and religious non-medical facilities.\n\nFor a given entry, the term “collection_week” signifies the start of the period that is aggregated. For example, a “collection_week” of 2020-11-20 means the average/sum/coverage of the elements captured from that given facility starting and including Friday, November 20, 2020, and ending and including reports for Thursday, November 26, 2020.\n\nReported elements include an append of either “_coverage”, “_sum”, or “_avg”.\n\n<ul><li>A “_coverage” append denotes how many times the facility reported that element during that collection week.</li>\n<li>A “_sum” append denotes the sum of the reports provided for that facility for that element during that collection week.</li>\n<li>A “_avg” append is the average of the reports provided for that facility for that element during that collection week.</li></ul>\n\nThe file will be updated weekly. No statistical analysis is applied to impute non-response. For averages, calculations are based on the number of values collected for a given hospital in that collection week. Suppression is applied to the file for sums and averages less than four (4). In these cases, the field will be replaced with “-999,999”. \n\n<b> A story page was created to display both corrected and raw datasets and can be accessed at this link: https://healthdata.gov/stories/s/nhgk-5gpv </b>\n\nThis data is preliminary and subject to change as more data become available. Data is available starting on July 31, 2020.\n\nSometimes, reports for a given facility will be provided to both HHS TeleTracking and HHS Protect. When this occurs, to ensure that there are not duplicate reports, deduplication is applied according to prioritization rules within HHS Protect.\n\nFor influenza fields listed in the file, the current HHS guidance marks these fields as optional. As a result, coverage of these elements are varied.\n\nOn May 3, 2021, the following fields have been added to this data set.\n<ul><li>hhs_ids\n<li>previous_day_admission_adult_covid_confirmed_7_day_coverage\n<li>previous_day_admission_pediatric_covid_confirmed_7_day_coverage\n<li>previous_day_admission_adult_covid_suspected_7_day_coverage\n<li>previous_day_admission_pediatric_covid_suspected_7_day_coverage\n<li>previous_week_personnel_covid_vaccinated_doses_administered_7_day_sum\n<li>total_personnel_covid_vaccinated_doses_none_7_day_sum\n<li>total_personnel_covid_vaccinated_doses_one_7_day_sum\n<li>total_personnel_covid_vaccinated_doses_all_7_day_sum\n<li>previous_week_patients_covid_vaccinated_doses_one_7_day_sum\n<li>previous_week_patients_covid_vaccinated_doses_all_7_day_sum</li></ul>\n\n\nOn May 8, 2021, this data set has been converted to a corrected data set. The corrections applied to this data set are to smooth out data anomalies caused by keyed in data errors. To help determine which records have had corrections made to it. An additional Boolean field called is_corrected has been added. \n\nOn May 13, 2021 Changed vaccination fields from sum to max or min fields. This reflects the maximum or minimum number reported for that metric in a given week.\n\nOn June 7, 2021 Changed vaccination fields from max or min fields to Wednesday reported only. This reflects that the number reported for that metric is only reported on Wednesdays in a given week.\n\nOn September 20, 2021, the following has been updated: The use of analytic dataset as a source.\n\nOn January 19, 2022, the following fields have been added to this dataset: \n<ul>\n<li>inpatient_beds_used_covid_7_day_avg\n<li>inpatient_beds_used_covid_7_day_sum\n<li>inpatient_beds_used_covid_7_day_coverage\n</ul>\n\nOn April 28, 2022, the following pediatric fields have been added to this dataset: \n<ul>\n<li>all_pediatric_inpatient_bed_occupied_7_day_avg\n<li>all_pediatric_inpatient_bed_occupied_7_day_coverage\n<li>all_pediatric_inpatient_bed_occupied_7_day_sum\n<li>all_pediatric_inpatient_beds_7_day_avg\n<li>all_pediatric_inpatient_beds_7_day_coverage\n<li>all_pediatric_inpatient_beds_7_day_sum\n<li>previous_day_admission_pediatric_covid_confirmed_0_4_7_day_sum\n<li>previous_day_admission_pediatric_covid_confirmed_12_17_7_day_sum\n<li>previous_day_admission_pediatric_covid_confirmed_5_11_7_day_sum\n<li>previous_day_admission_pediatric_covid_confirmed_unknown_7_day_sum\n<li>staffed_icu_pediatric_patients_confirmed_covid_7_day_avg\n<li>staffed_icu_pediatric_patients_confirmed_covid_7_day_coverage\n<li>staffed_icu_pediatric_patients_confirmed_covid_7_day_sum\n<li>staffed_pediatric_icu_bed_occupancy_7_day_avg\n<li>staffed_pediatric_icu_bed_occupancy_7_day_coverage\n<li>staffed_pediatric_icu_bed_occupancy_7_day_sum\n<li>total_staffed_pediatric_icu_beds_7_day_avg\n<li>total_staffed_pediatric_icu_beds_7_day_coverage\n<li>total_staffed_pediatric_icu_beds_7_day_sum\n</ul>\n\nOn October 24, 2022, the data includes more analytical calculations in efforts to provide a cleaner dataset. For a raw version of this dataset, please follow this link: https://healthdata.gov/Hospital/COVID-19-Reported-Patient-Impact-and-Hospital-Capa/uqq2-txqb",
"displayType": "table",
"downloadCount": 336835,
"hideFromCatalog": false,
"hideFromDataJson": false,
"licenseId": "USGOV_WORKS",
"newBackend": true,
"numberOfComments": 0,
"oid": 38446680,
"provenance": "official",
"publicationAppendEnabled": false,
"publicationDate": 1651505107,
"publicationGroup": 17856800,
"publicationStage": "published",
"rowsUpdatedAt": 1679932554,
"rowsUpdatedBy": "qidn-2nza",
"tableId": 18687210,
"totalTimesRated": 0,
"viewCount": 447379,
"viewLastModified": 1679932089,
"viewType": "tabular",
"approvals": [
{
"reviewedAt": 1614805912,
"reviewedAutomatically": false,
"state": "approved",
"submissionId": 4666357,
"submissionObject": "public_audience_request",
"submissionOutcome": "change_audience",
"submittedAt": 1614805836,
"workflowId": 2688,
"reviewer": {
"displayName": "Deleted User",
"flags": [
"deleted"
]
},
"submissionDetails": {
"permissionType": "read"
},
"submissionOutcomeApplication": {
"endedAt": 1614805913,
"failureCount": 0,
"startedAt": 1614805912,
"status": "success"
},
"submitter": {
"displayName": "Deleted User",
"flags": [
"deleted"
]
}
}
],
"clientContext": {
"clientContextVariables": [],
"inheritedVariables": {}
},
"columns": [
{
"id": 559820424,
"name": "hospital_pk",
"dataTypeName": "text",
"description": "This unique key for the given hospital that will match the ccn column if it exists, otherwise, it is a derived unique key.",
"fieldName": "hospital_pk",
"position": 1,
"renderTypeName": "text",
"tableColumnId": 125201562,
"format": {}
},
{
"id": 559820425,
"name": "collection_week",
"dataTypeName": "calendar_date",
"description": "This date indicates the start of the period of reporting (the starting Friday).",
"fieldName": "collection_week",
"position": 2,
"renderTypeName": "calendar_date",
"tableColumnId": 125201517,
"format": {
"view": "date_ymd"
}
},
{
"id": 559820426,
"name": "state",
"dataTypeName": "text",
"description": "[FAQ - 1. d)] The two digit state/territory code for the hospital.",
"fieldName": "state",
"position": 3,
"renderTypeName": "text",
"tableColumnId": 125201515,
"format": {}
},
{
"id": 559820427,
"name": "ccn",
"dataTypeName": "text",
"description": "[FAQ - 1. b)] CMS Certification Number (CCN) of the given facility",
"fieldName": "ccn",
"position": 4,
"renderTypeName": "text",
"tableColumnId": 125201528,
"format": {}
},
{
"id": 559820428,
"name": "hospital_name",
"dataTypeName": "text",
"description": "[FAQ - 1. a)] The name of the facility reporting.",
"fieldName": "hospital_name",
"position": 5,
"renderTypeName": "text",
"tableColumnId": 125201503,
"format": {}
},
{
"id": 559820429,
"name": "address",
"dataTypeName": "text",
"description": "The address of the facility reporting.",
"fieldName": "address",
"position": 6,
"renderTypeName": "text",
"tableColumnId": 125201564,
"format": {}
},
{
"id": 559820430,
"name": "city",
"dataTypeName": "text",
"description": "The city of the facility reporting.",
"fieldName": "city",
"position": 7,
"renderTypeName": "text",
"tableColumnId": 125201529,
"format": {}
},
{
"id": 559820431,
"name": "zip",
"dataTypeName": "text",
"description": "The 5-digit zip code of the facility reporting.",
"fieldName": "zip",
"position": 8,
"renderTypeName": "text",
"tableColumnId": 125201521,
"format": {}
},
{
"id": 559820432,
"name": "hospital_subtype",
"dataTypeName": "text",
"description": "The sub-type of the facility reporting. Valid values are: Children's Hospitals, Critical Access Hospitals, Long Term, Psychiatric, Rehabilitation & Short Term. Some facilities are not designated with this field.",
"fieldName": "hospital_subtype",
"position": 9,
"renderTypeName": "text",
"tableColumnId": 125201584,
"format": {}
},
{
"id": 559820433,
"name": "fips_code",
"dataTypeName": "text",
"description": "The Federal Information Processing Standard (FIPS) code of the location of the hospital.",
"fieldName": "fips_code",
"position": 10,
"renderTypeName": "text",
"tableColumnId": 125201583,
"format": {}
},
{
"id": 559820434,
"name": "is_metro_micro",
"dataTypeName": "text",
"description": "This is based on whether the facility serves a Metropolitan or Micropolitan area. True if yes, and false if no.",
"fieldName": "is_metro_micro",
"position": 11,
"renderTypeName": "text",
"tableColumnId": 125201543,
"format": {}
},
{
"id": 559820435,
"name": "total_beds_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 2. a)] Average of total number of all staffed inpatient and outpatient beds in the hospital, including all overflow, observation, and active surge/expansion beds used for inpatients and for outpatients (including all ICU, ED, and observation) reported during the 7-day period.",
"fieldName": "total_beds_7_day_avg",
"position": 12,
"renderTypeName": "number",
"tableColumnId": 125201502,
"format": {}
},
{
"id": 559820436,
"name": "all_adult_hospital_beds_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 2. b)] Average of all staffed inpatient and outpatient adult beds in the hospital, including all overflow and active surge/expansion beds for inpatients and for outpatients (including all ICU, ED, and observation) reported during the 7-day period.",
"fieldName": "all_adult_hospital_beds_7_day_avg",
"position": 13,
"renderTypeName": "number",
"tableColumnId": 125201560,
"format": {}
},
{
"id": 559820437,
"name": "all_adult_hospital_inpatient_beds_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 3. b)] Average of total number of staffed inpatient adult beds in the hospital including all overflow and active surge/expansion beds used for inpatients (including all designated ICU beds) reported during the 7-day period.",
"fieldName": "all_adult_hospital_inpatient_beds_7_day_avg",
"position": 14,
"renderTypeName": "number",
"tableColumnId": 125201586,
"format": {}
},
{
"id": 559820438,
"name": "inpatient_beds_used_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 4. a)] Average of total number of staffed inpatient beds that are occupied reported during the 7-day period.",
"fieldName": "inpatient_beds_used_7_day_avg",
"position": 15,
"renderTypeName": "number",
"tableColumnId": 125201527,
"format": {}
},
{
"id": 559820439,
"name": "all_adult_hospital_inpatient_bed_occupied_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 4. b)] Average of total number of staffed inpatient adult beds that are occupied reported during the 7-day period.",
"fieldName": "all_adult_hospital_inpatient_bed_occupied_7_day_avg",
"position": 16,
"renderTypeName": "number",
"tableColumnId": 125201553,
"format": {}
},
{
"id": 559820440,
"name": "inpatient_beds_used_covid_7_day_avg",
"dataTypeName": "number",
"description": "Average of reported patients currently hospitalized in an inpatient bed who have suspected or confirmed COVID-19 reported during the 7-day period.",
"fieldName": "inpatient_beds_used_covid_7_day_avg",
"position": 17,
"renderTypeName": "number",
"tableColumnId": 140593571,
"format": {}
},
{
"id": 559820441,
"name": "total_adult_patients_hospitalized_confirmed_and_suspected_covid_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 9. a)] Average number of patients currently hospitalized in an adult inpatient bed who have laboratory-confirmed or suspected COVID19, including those in observation beds reported during the 7-day period.",
"fieldName": "total_adult_patients_hospitalized_confirmed_and_suspected_covid_7_day_avg",
"position": 18,
"renderTypeName": "number",
"tableColumnId": 125201577,
"format": {}
},
{
"id": 559820442,
"name": "total_adult_patients_hospitalized_confirmed_covid_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 9. b)] Average number of patients currently hospitalized in an adult inpatient bed who have laboratory-confirmed COVID-19, including those in observation beds. This average includes patients who have both laboratory-confirmed COVID-19 and laboratory-confirmed influenza.",
"fieldName": "total_adult_patients_hospitalized_confirmed_covid_7_day_avg",
"position": 19,
"renderTypeName": "number",
"tableColumnId": 125201544,
"format": {}
},
{
"id": 559820443,
"name": "total_pediatric_patients_hospitalized_confirmed_and_suspected_covid_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 10. a)] Average number of patients currently hospitalized in a pediatric inpatient bed, including NICU, PICU, newborn, and nursery, who are suspected or laboratory-confirmed-positive for COVID-19. This average includes those in observation beds reported in the 7-day period.",
"fieldName": "total_pediatric_patients_hospitalized_confirmed_and_suspected_covid_7_day_avg",
"position": 20,
"renderTypeName": "number",
"tableColumnId": 125201549,
"format": {}
},
{
"id": 559820444,
"name": "total_pediatric_patients_hospitalized_confirmed_covid_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 10. b)] Average number of patients currently hospitalized in a pediatric inpatient bed, including NICU, PICU, newborn, and nursery, who have laboratory-confirmed COVID-19. Including those in observation beds. Including patients who have both laboratory-confirmed COVID-19 and laboratory confirmed influenza in this field reported in the 7-day period.",
"fieldName": "total_pediatric_patients_hospitalized_confirmed_covid_7_day_avg",
"position": 21,
"renderTypeName": "number",
"tableColumnId": 125201537,
"format": {}
},
{
"id": 559820445,
"name": "inpatient_beds_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 3. a)] Average number of total number of staffed inpatient beds in your hospital including all overflow, observation, and active surge/expansion beds used for inpatients (including all ICU beds) reported in the 7-day period.",
"fieldName": "inpatient_beds_7_day_avg",
"position": 22,
"renderTypeName": "number",
"tableColumnId": 125201541,
"format": {}
},
{
"id": 559820446,
"name": "total_icu_beds_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 5. a)] Average number of total number of staffed inpatient ICU beds reported in the 7-day period.",
"fieldName": "total_icu_beds_7_day_avg",
"position": 23,
"renderTypeName": "number",
"tableColumnId": 125201513,
"format": {}
},
{
"id": 559820447,
"name": "total_staffed_adult_icu_beds_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 5. b)] Average number of total number of staffed inpatient adult ICU beds reported in the 7-day period.",
"fieldName": "total_staffed_adult_icu_beds_7_day_avg",
"position": 24,
"renderTypeName": "number",
"tableColumnId": 125201579,
"format": {}
},
{
"id": 559820448,
"name": "icu_beds_used_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 6. a)] Average number of total number of staffed inpatient ICU beds that are occupied reported in the 7-day period.",
"fieldName": "icu_beds_used_7_day_avg",
"position": 25,
"renderTypeName": "number",
"tableColumnId": 125201504,
"format": {}
},
{
"id": 559820449,
"name": "staffed_adult_icu_bed_occupancy_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 6. b)] Average of total number of staffed inpatient adult ICU beds that are occupied reported in the 7-day period.",
"fieldName": "staffed_adult_icu_bed_occupancy_7_day_avg",
"position": 26,
"renderTypeName": "number",
"tableColumnId": 125201571,
"format": {}
},
{
"id": 559820450,
"name": "staffed_icu_adult_patients_confirmed_and_suspected_covid_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 12. a)] Average number of patients currently hospitalized in a designated adult ICU bed who have suspected or laboratory-confirmed COVID-19 reported in the 7-day period.",
"fieldName": "staffed_icu_adult_patients_confirmed_and_suspected_covid_7_day_avg",
"position": 27,
"renderTypeName": "number",
"tableColumnId": 125201568,
"format": {}
},
{
"id": 559820451,
"name": "staffed_icu_adult_patients_confirmed_covid_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 12. b)] Average number of patients currently hospitalized in a designated adult ICU bed who have laboratory-confirmed COVID-19. Including patients who have both laboratory-confirmed COVID-19 and laboratory-confirmed influenza in this field reported in the 7-day period.",
"fieldName": "staffed_icu_adult_patients_confirmed_covid_7_day_avg",
"position": 28,
"renderTypeName": "number",
"tableColumnId": 125201538,
"format": {}
},
{
"id": 559820452,
"name": "total_patients_hospitalized_confirmed_influenza_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 33] Average number of patients (all ages) currently hospitalized in an inpatient bed who have laboratory-confirmed influenza. Including those in observation beds reported in the 7-day period.",
"fieldName": "total_patients_hospitalized_confirmed_influenza_7_day_avg",
"position": 29,
"renderTypeName": "number",
"tableColumnId": 125201498,
"format": {}
},
{
"id": 559820453,
"name": "icu_patients_confirmed_influenza_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 35] Average of patients (all ages) currently hospitalized in a designated ICU bed with laboratory-confirmed influenza in the 7-day period.",
"fieldName": "icu_patients_confirmed_influenza_7_day_avg",
"position": 30,
"renderTypeName": "number",
"tableColumnId": 125201516,
"format": {}
},
{
"id": 559820454,
"name": "total_patients_hospitalized_confirmed_influenza_and_covid_7_day_avg",
"dataTypeName": "number",
"description": "[FAQ - 36] Average number of patients (all ages) currently hospitalized in an inpatient bed who have laboratory-confirmed COVID-19 and laboratory-confirmed influenza reported in the 7-day period.",
"fieldName": "total_patients_hospitalized_confirmed_influenza_and_covid_7_day_avg",
"position": 31,
"renderTypeName": "number",
"tableColumnId": 125201540,
"format": {}
},
{
"id": 559820455,
"name": "total_beds_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 2. a)] Sum of reports of total number of all staffed inpatient and outpatient beds in the hospital, including all overflow, observation, and active surge/expansion beds used for inpatients and for outpatients (including all ICU, ED, and observation) reported during the 7-day period.",
"fieldName": "total_beds_7_day_sum",
"position": 32,
"renderTypeName": "number",
"tableColumnId": 125201585,
"format": {}
},
{
"id": 559820456,
"name": "all_adult_hospital_beds_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 2. b)] Sum of reports of all staffed inpatient and outpatient adult beds in the hospital, including all overflow and active surge/expansion beds for inpatients and for outpatients (including all ICU, ED, and observation) reported during the 7-day period.",
"fieldName": "all_adult_hospital_beds_7_day_sum",
"position": 33,
"renderTypeName": "number",
"tableColumnId": 125201514,
"format": {}
},
{
"id": 559820457,
"name": "all_adult_hospital_inpatient_beds_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 3. b)] Sum of reports of all staffed inpatient and outpatient adult beds in the hospital, including all overflow and active surge/expansion beds for inpatients and for outpatients (including all ICU, ED, and observation) reported during the 7-day period.",
"fieldName": "all_adult_hospital_inpatient_beds_7_day_sum",
"position": 34,
"renderTypeName": "number",
"tableColumnId": 125201508,
"format": {}
},
{
"id": 559820458,
"name": "inpatient_beds_used_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 4. a)] Sum of reports of total number of staffed inpatient beds that are occupied reported during the 7-day period.",
"fieldName": "inpatient_beds_used_7_day_sum",
"position": 35,
"renderTypeName": "number",
"tableColumnId": 125201574,
"format": {}
},
{
"id": 559820459,
"name": "all_adult_hospital_inpatient_bed_occupied_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 4. b)] Sum of reports of total number of staffed inpatient adult beds that are occupied reported during the 7-day period.",
"fieldName": "all_adult_hospital_inpatient_bed_occupied_7_day_sum",
"position": 36,
"renderTypeName": "number",
"tableColumnId": 125201505,
"format": {}
},
{
"id": 559820460,
"name": "inpatient_beds_used_covid_7_day_sum",
"dataTypeName": "number",
"description": "Sum of reported patients currently hospitalized in an inpatient bed who have suspected or confirmed COVID-19 reported during the 7-day period.",
"fieldName": "inpatient_beds_used_covid_7_day_sum",
"position": 37,
"renderTypeName": "number",
"tableColumnId": 140593573,
"format": {}
},
{
"id": 559820461,
"name": "total_adult_patients_hospitalized_confirmed_and_suspected_covid_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 9. a)] Sum of reports of patients currently hospitalized in an adult inpatient bed who have laboratory-confirmed or suspected COVID19. Including those in observation beds reported during the 7-day period.",
"fieldName": "total_adult_patients_hospitalized_confirmed_and_suspected_covid_7_day_sum",
"position": 38,
"renderTypeName": "number",
"tableColumnId": 125201554,
"format": {}
},
{
"id": 559820462,
"name": "total_adult_patients_hospitalized_confirmed_covid_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 9. b)] Sum of reports of patients currently hospitalized in an adult inpatient bed who have laboratory-confirmed COVID-19. Including those in observation beds. Including patients who have both laboratory-confirmed COVID-19 and laboratory confirmed influenza in this field during the 7-day period.",
"fieldName": "total_adult_patients_hospitalized_confirmed_covid_7_day_sum",
"position": 39,
"renderTypeName": "number",
"tableColumnId": 125201499,
"format": {}
},
{
"id": 559820463,
"name": "total_pediatric_patients_hospitalized_confirmed_and_suspected_covid_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 10. a)] Sum of reports of patients currently hospitalized in a pediatric inpatient bed, including NICU, PICU, newborn, and nursery, who are suspected or laboratory-confirmed-positive for COVID-19. Including those in observation beds reported in the 7-day period.",
"fieldName": "total_pediatric_patients_hospitalized_confirmed_and_suspected_covid_7_day_sum",
"position": 40,
"renderTypeName": "number",
"tableColumnId": 125201509,
"format": {}
},
{
"id": 559820464,
"name": "total_pediatric_patients_hospitalized_confirmed_covid_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 10. b)] Sum of reports of patients currently hospitalized in a pediatric inpatient bed, including NICU, PICU, newborn, and nursery, who have laboratory-confirmed COVID-19. Including those in observation beds. Including patients who have both laboratory-confirmed COVID-19 and laboratory confirmed influenza in this field reported in the 7-day period.",
"fieldName": "total_pediatric_patients_hospitalized_confirmed_covid_7_day_sum",
"position": 41,
"renderTypeName": "number",
"tableColumnId": 125201507,
"format": {}
},
{
"id": 559820465,
"name": "inpatient_beds_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 3. a)] Sum of reports of total number of staffed inpatient beds in your hospital including all overflow, observation, and active surge/expansion beds used for inpatients (including all ICU beds) reported in the 7-day period.",
"fieldName": "inpatient_beds_7_day_sum",
"position": 42,
"renderTypeName": "number",
"tableColumnId": 125201552,
"format": {}
},
{
"id": 559820466,
"name": "total_icu_beds_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 5. a)] Sum of reports of total number of staffed inpatient ICU beds reported in the 7-day period.",
"fieldName": "total_icu_beds_7_day_sum",
"position": 43,
"renderTypeName": "number",
"tableColumnId": 125201533,
"format": {}
},
{
"id": 559820467,
"name": "total_staffed_adult_icu_beds_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 5. b)] Sum of reports of total number of staffed inpatient adult ICU beds reported in the 7-day period.",
"fieldName": "total_staffed_adult_icu_beds_7_day_sum",
"position": 44,
"renderTypeName": "number",
"tableColumnId": 125201518,
"format": {}
},
{
"id": 559820468,
"name": "icu_beds_used_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 6. a)] Sum of reports of total number of staffed inpatient ICU beds reported in the 7-day period.",
"fieldName": "icu_beds_used_7_day_sum",
"position": 45,
"renderTypeName": "number",
"tableColumnId": 125201581,
"format": {}
},
{
"id": 559820469,
"name": "staffed_adult_icu_bed_occupancy_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 6. b)] Sum of reports of total number of staffed inpatient adult ICU beds that are occupied reported in the 7-day period.",
"fieldName": "staffed_adult_icu_bed_occupancy_7_day_sum",
"position": 46,
"renderTypeName": "number",
"tableColumnId": 125201558,
"format": {}
},
{
"id": 559820470,
"name": "staffed_icu_adult_patients_confirmed_and_suspected_covid_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 12. a)] Sum of reports of patients currently hospitalized in a designated adult ICU bed who have suspected or laboratory-confirmed COVID-19 reported in the 7-day period.",
"fieldName": "staffed_icu_adult_patients_confirmed_and_suspected_covid_7_day_sum",
"position": 47,
"renderTypeName": "number",
"tableColumnId": 125201561,
"format": {}
},
{
"id": 559820471,
"name": "staffed_icu_adult_patients_confirmed_covid_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 12. b)] Sum of reports of patients currently hospitalized in a designated adult ICU bed who have laboratory-confirmed COVID-19. Including patients who have both laboratory-confirmed COVID-19 and laboratory-confirmed influenza in this field reported in the 7-day period.",
"fieldName": "staffed_icu_adult_patients_confirmed_covid_7_day_sum",
"position": 48,
"renderTypeName": "number",
"tableColumnId": 125201588,
"format": {}
},
{
"id": 559820472,
"name": "total_patients_hospitalized_confirmed_influenza_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 33] Sum of reports of patients (all ages) currently hospitalized in an inpatient bed who have laboratory-confirmed influenza. Including those in observation beds reported in the 7-day period.",
"fieldName": "total_patients_hospitalized_confirmed_influenza_7_day_sum",
"position": 49,
"renderTypeName": "number",
"tableColumnId": 125201530,
"format": {}
},
{
"id": 559820473,
"name": "icu_patients_confirmed_influenza_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 35] Sum of reports of patients (all ages) currently hospitalized in a designated ICU bed with laboratory-confirmed influenza reported in the 7-day period.",
"fieldName": "icu_patients_confirmed_influenza_7_day_sum",
"position": 50,
"renderTypeName": "number",
"tableColumnId": 125201566,
"format": {}
},
{
"id": 559820474,
"name": "total_patients_hospitalized_confirmed_influenza_and_covid_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 36] Sum of reports of patients (all ages) currently hospitalized in an inpatient bed who have laboratory-confirmed COVID-19 and laboratory-confirmed influenza reported in the 7-day period.",
"fieldName": "total_patients_hospitalized_confirmed_influenza_and_covid_7_day_sum",
"position": 51,
"renderTypeName": "number",
"tableColumnId": 125201520,
"format": {}
},
{
"id": 559820475,
"name": "total_beds_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 2. a)] Number of times in the 7 day period that the facility reported total number of all staffed inpatient and outpatient beds in your hospital, including all overflow, observation, and active surge/expansion beds used for inpatients and for outpatients (including all ICU, ED, and observation).",
"fieldName": "total_beds_7_day_coverage",
"position": 52,
"renderTypeName": "number",
"tableColumnId": 125201522,
"format": {}
},
{
"id": 559820476,
"name": "all_adult_hospital_beds_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 2. b)] Number of times in the 7-day period that the facility reported total number of all staffed inpatient and outpatient adult beds in your hospital, including all overflow and active surge/expansion beds for inpatients and for outpatients (including all ICU, ED, and observation).",
"fieldName": "all_adult_hospital_beds_7_day_coverage",
"position": 53,
"renderTypeName": "number",
"tableColumnId": 125201506,
"format": {}
},
{
"id": 559820477,
"name": "all_adult_hospital_inpatient_beds_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 3. b)] Number of times in the 7-day period that the facility reported total number of staffed inpatient adult beds in your hospital including all overflow and active surge/expansion beds used for inpatients (including all designated ICU beds).",
"fieldName": "all_adult_hospital_inpatient_beds_7_day_coverage",
"position": 54,
"renderTypeName": "number",
"tableColumnId": 125201575,
"format": {}
},
{
"id": 559820478,
"name": "inpatient_beds_used_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 4. a)] Number of times in the 7-day period that the facility reported total number of staffed inpatient beds that are occupied.",
"fieldName": "inpatient_beds_used_7_day_coverage",
"position": 55,
"renderTypeName": "number",
"tableColumnId": 125201531,
"format": {}
},
{
"id": 559820479,
"name": "all_adult_hospital_inpatient_bed_occupied_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 4. b)] Number of times in the 7-day period that the facility reported total number of staffed inpatient adult beds that are occupied.",
"fieldName": "all_adult_hospital_inpatient_bed_occupied_7_day_coverage",
"position": 56,
"renderTypeName": "number",
"tableColumnId": 125201550,
"format": {}
},
{
"id": 559820480,
"name": "inpatient_beds_used_covid_7_day_coverage",
"dataTypeName": "number",
"description": "Number of times in the 7-day period that the facility reported \"inpatient_beds_used_covid.\"",
"fieldName": "inpatient_beds_used_covid_7_day_coverage",
"position": 57,
"renderTypeName": "number",
"tableColumnId": 140593572,
"format": {}
},
{
"id": 559820481,
"name": "total_adult_patients_hospitalized_confirmed_and_suspected_covid_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 9. a)] Number of times in the 7-day period that the facility reported patients currently hospitalized in an adult inpatient bed who have laboratory-confirmed or suspected COVID19. Including those in observation beds.",
"fieldName": "total_adult_patients_hospitalized_confirmed_and_suspected_covid_7_day_coverage",
"position": 58,
"renderTypeName": "number",
"tableColumnId": 125201519,
"format": {}
},
{
"id": 559820482,
"name": "total_adult_patients_hospitalized_confirmed_covid_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 9. b)] Number of times in the 7-day period that the facility reported patients currently hospitalized in an adult inpatient bed who have laboratory-confirmed COVID-19. Including those in observation beds. Including patients who have both laboratory-confirmed COVID-19 and laboratory confirmed influenza in this field.",
"fieldName": "total_adult_patients_hospitalized_confirmed_covid_7_day_coverage",
"position": 59,
"renderTypeName": "number",
"tableColumnId": 125201580,
"format": {}
},
{
"id": 559820483,
"name": "total_pediatric_patients_hospitalized_confirmed_and_suspected_covid_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 10. a)] Number of times in the 7-day period that the facility reported Patients currently hospitalized in a pediatric inpatient bed, including NICU, PICU, newborn, and nursery, who are suspected or laboratory-confirmed-positive for COVID-19. Including those in observation beds.",
"fieldName": "total_pediatric_patients_hospitalized_confirmed_and_suspected_covid_7_day_coverage",
"position": 60,
"renderTypeName": "number",
"tableColumnId": 125201576,
"format": {}
},
{
"id": 559820484,
"name": "total_pediatric_patients_hospitalized_confirmed_covid_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 10. b)] Number of times in the 7-day period that the facility reported patients currently hospitalized in a pediatric inpatient bed, including NICU, PICU, newborn, and nursery, who have laboratory-confirmed COVID-19. Including those in observation beds. Including patients who have both laboratory-confirmed COVID-19 and laboratory confirmed influenza in this field.",
"fieldName": "total_pediatric_patients_hospitalized_confirmed_covid_7_day_coverage",
"position": 61,
"renderTypeName": "number",
"tableColumnId": 125201500,
"format": {}
},
{
"id": 559820485,
"name": "inpatient_beds_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 3. a)] Number of times in the 7-day period that the facility reported total number of staffed inpatient beds in your hospital including all overflow, observation, and active surge/expansion beds used for inpatients (including all ICU beds).",
"fieldName": "inpatient_beds_7_day_coverage",
"position": 62,
"renderTypeName": "number",
"tableColumnId": 125201546,
"format": {}
},
{
"id": 559820486,
"name": "total_icu_beds_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 5. a)] Number of times in the 7-day period that the facility reported total number of staffed inpatient ICU beds.",
"fieldName": "total_icu_beds_7_day_coverage",
"position": 63,
"renderTypeName": "number",
"tableColumnId": 125201578,
"format": {}
},
{
"id": 559820487,
"name": "total_staffed_adult_icu_beds_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 5. b)] Number of times in the 7-day period that the facility reported total number of staffed inpatient adult ICU beds.",
"fieldName": "total_staffed_adult_icu_beds_7_day_coverage",
"position": 64,
"renderTypeName": "number",
"tableColumnId": 125201501,
"format": {}
},
{
"id": 559820488,
"name": "icu_beds_used_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 6. a)] Number of times in the 7-day period that the facility reported total number of staffed inpatient ICU beds.",
"fieldName": "icu_beds_used_7_day_coverage",
"position": 65,
"renderTypeName": "number",
"tableColumnId": 125201545,
"format": {}
},
{
"id": 559820489,
"name": "staffed_adult_icu_bed_occupancy_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 6. b)] Number of times in the 7-day period that the facility reported total number of staffed inpatient adult ICU beds that are occupied.",
"fieldName": "staffed_adult_icu_bed_occupancy_7_day_coverage",
"position": 66,
"renderTypeName": "number",
"tableColumnId": 125201532,
"format": {}
},
{
"id": 559820490,
"name": "staffed_icu_adult_patients_confirmed_and_suspected_covid_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 12. a)] Number of times in the 7-day period that the facility reported patients currently hospitalized in a designated adult ICU bed who have suspected or laboratory-confirmed COVID-19.",
"fieldName": "staffed_icu_adult_patients_confirmed_and_suspected_covid_7_day_coverage",
"position": 67,
"renderTypeName": "number",
"tableColumnId": 125201572,
"format": {}
},
{
"id": 559820491,
"name": "staffed_icu_adult_patients_confirmed_covid_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 12. b)] Number of times in the 7-day period that the facility reported patients currently hospitalized in a designated adult ICU bed who have laboratory-confirmed COVID-19. Including patients who have both laboratory-confirmed COVID-19 and laboratory-confirmed influenza in this field.",
"fieldName": "staffed_icu_adult_patients_confirmed_covid_7_day_coverage",
"position": 68,
"renderTypeName": "number",
"tableColumnId": 125201539,
"format": {}
},
{
"id": 559820492,
"name": "total_patients_hospitalized_confirmed_influenza_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 33] Number of times in the 7-day period that the facility reported patients (all ages) currently hospitalized in an inpatient bed who have laboratory-confirmed influenza. Including those in observation beds.",
"fieldName": "total_patients_hospitalized_confirmed_influenza_7_day_coverage",
"position": 69,
"renderTypeName": "number",
"tableColumnId": 125201535,
"format": {}
},
{
"id": 559820493,
"name": "icu_patients_confirmed_influenza_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 35] Number of times in the 7-day period that the facility reported patients (all ages) currently hospitalized in a designated ICU bed with laboratory-confirmed influenza.",
"fieldName": "icu_patients_confirmed_influenza_7_day_coverage",
"position": 70,
"renderTypeName": "number",
"tableColumnId": 125201556,
"format": {}
},
{
"id": 559820494,
"name": "total_patients_hospitalized_confirmed_influenza_and_covid_7_day_coverage",
"dataTypeName": "number",
"description": "[FAQ - 36] Number of times in the 7-day period that the facility reported patients (all ages) currently hospitalized in an inpatient bed who have laboratory-confirmed COVID-19 and laboratory-confirmed influenza.",
"fieldName": "total_patients_hospitalized_confirmed_influenza_and_covid_7_day_coverage",
"position": 71,
"renderTypeName": "number",
"tableColumnId": 125201536,
"format": {}
},
{
"id": 559820495,
"name": "previous_day_admission_adult_covid_confirmed_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a)] Sum of number of patients who were admitted to an adult inpatient bed on the previous calendar day who had confirmed COVID-19 at the time of admission reported in the 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_7_day_sum",
"position": 72,
"renderTypeName": "number",
"tableColumnId": 125201512,
"format": {}
},
{
"id": 559820496,
"name": "previous_day_admission_adult_covid_confirmed_18-19_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a1)] Sum of number of patients age 18-19 who were admitted to an adult inpatient bed on the previous calendar day who had confirmed COVID-19 at the time of admission reported in the 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_18_19_7_day_sum",
"position": 73,
"renderTypeName": "number",
"tableColumnId": 125201525,
"format": {}
},
{
"id": 559820497,
"name": "previous_day_admission_adult_covid_confirmed_20-29_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a2)] Sum of number of patients age 20-29 who were admitted to an adult inpatient bed on the previous calendar day who had confirmed COVID-19 at the time of admission reported in the 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_20_29_7_day_sum",
"position": 74,
"renderTypeName": "number",
"tableColumnId": 125201523,
"format": {}
},
{
"id": 559820498,
"name": "previous_day_admission_adult_covid_confirmed_30-39_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a3)] Sum of number of patients age 30-39 who were admitted to an adult inpatient bed on the previous calendar day who had confirmed COVID-19 at the time of admission reported in 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_30_39_7_day_sum",
"position": 75,
"renderTypeName": "number",
"tableColumnId": 125201559,
"format": {}
},
{
"id": 559820499,
"name": "previous_day_admission_adult_covid_confirmed_40-49_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a4)] Sum of number of patients age 40-49 who were admitted to an adult inpatient bed on the previous calendar day who had confirmed COVID-19 at the time of admission reported in 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_40_49_7_day_sum",
"position": 76,
"renderTypeName": "number",
"tableColumnId": 125201565,
"format": {}
},
{
"id": 559820500,
"name": "previous_day_admission_adult_covid_confirmed_50-59_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a5)] Sum of number of patients age 50-59 who were admitted to an adult inpatient bed on the previous calendar day who had confirmed COVID-19 at the time of admission reported in 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_50",
"position": 77,
"renderTypeName": "number",
"tableColumnId": 125201570,
"format": {}
},
{
"id": 559820501,
"name": "previous_day_admission_adult_covid_confirmed_60-69_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a6)] Sum of number of patients age 60-69 who were admitted to an adult inpatient bed on the previous calendar day who had confirmed COVID-19 at the time of admission reported in 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_60",
"position": 78,
"renderTypeName": "number",
"tableColumnId": 125201510,
"format": {}
},
{
"id": 559820502,
"name": "previous_day_admission_adult_covid_confirmed_70-79_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a7)] Sum of number of patients age 70-79 who were admitted to an adult inpatient bed on the previous calendar day who had suspected COVID-19 at the time of admission reported in 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_70",
"position": 79,
"renderTypeName": "number",
"tableColumnId": 125201551,
"format": {}
},
{
"id": 559820503,
"name": "previous_day_admission_adult_covid_confirmed_80+_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a8)] Sum of number of patients 80 or older who were admitted to an adult inpatient bed on the previous calendar day who had confirmed COVID-19 at the time of admission reported in 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_80",
"position": 80,
"renderTypeName": "number",
"tableColumnId": 125201555,
"format": {}
},
{
"id": 559820504,
"name": "previous_day_admission_adult_covid_confirmed_unknown_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. a9)] Sum of number of patients age unknown who were admitted to an adult inpatient bed on the previous calendar day who had confirmed COVID-19 at the time of admission reported in 7-day period.",
"fieldName": "previous_day_admission_adult_covid_confirmed_unknown_7_day_sum",
"position": 81,
"renderTypeName": "number",
"tableColumnId": 125201573,
"format": {}
},
{
"id": 559820505,
"name": "previous_day_admission_pediatric_covid_confirmed_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 18. a)] Sum of number of pediatric patients who were admitted to an inpatient bed, including NICU, PICU, newborn, and nursery, on the previous calendar day who had confirmed COVID-19 at the time of admission.",
"fieldName": "previous_day_admission_pediatric_covid_confirmed_7_day_sum",
"position": 82,
"renderTypeName": "number",
"tableColumnId": 125201563,
"format": {}
},
{
"id": 559820506,
"name": "previous_day_covid_ED_visits_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 20] Sum of total number of ED visits who were seen on the previous calendar day who had a visit related to COVID-19 (meets suspected or confirmed definition or presents for COVID diagnostic testing – do not count patients who present for pre-procedure screening) reported in 7-day period.",
"fieldName": "previous_day_covid_ed_visits_7_day_sum",
"position": 83,
"renderTypeName": "number",
"tableColumnId": 125201582,
"format": {}
},
{
"id": 559820507,
"name": "previous_day_admission_adult_covid_suspected_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. b)] Sum of number of patients who were admitted to an adult inpatient bed on the previous calendar day who had suspected COVID-19 at the time of admission reported in 7-day period.",
"fieldName": "previous_day_admission_adult_covid_suspected_7_day_sum",
"position": 84,
"renderTypeName": "number",
"tableColumnId": 125201587,
"format": {}
},
{
"id": 559820508,
"name": "previous_day_admission_adult_covid_suspected_18-19_7_day_sum",
"dataTypeName": "number",
"description": "[FAQ - 17. b1)] Sum of number of patients age 18-19 who were admitted to an adult inpatient bed on the previous calendar day who had suspected COVID-19 at the time of admission reported in 7-day period.",
"fieldName": "previous_day_admission_adult_covid_suspected_18",
"position": 85,