-
Notifications
You must be signed in to change notification settings - Fork 1
/
OMOPDD.html
1473 lines (1466 loc) · 62 KB
/
OMOPDD.html
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
<!-- Include DataTables CSS -->
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.20/css/jquery.dataTables.css">
<!-- Include jQuery and DataTables JavaScript -->
<script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.20/js/jquery.dataTables.js"></script>
<script>
$(document).ready(function () {
$('#table_id').DataTable();
});
</script>
```
<!-- HTML table -->
<table id="table_id" class="display">
<thead>
<tr>
<th>Relevant OMOP Table</th>
<th>Field Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>person</td>
<td>person_id</td>
<td>A unique identifier for each person. </td>
</tr>
<tr>
<td>person</td>
<td>gender_concept_id</td>
<td>A foreign key that refers to an identifier in the CONCEPT table for self-reported gender or sex at birth
for the participant.</td>
</tr>
<tr>
<td>person</td>
<td>year_of_birth</td>
<td>The year of birth of the person. For data sources with date of birth, the year is extracted. For data
sources where the year of birth is not available, the approximate year of birth is derived based on any
age group categorization available.</td>
</tr>
<tr>
<td>person</td>
<td>month_of_birth</td>
<td>The month of birth of the person. For data sources that provide the precise date of birth, the month is
extracted and stored in this field.</td>
</tr>
<tr>
<td>person</td>
<td>day_of_birth</td>
<td>The day of the month of birth of the person. For data sources that provide the precise date of birth,
the day is extracted and stored in this field.</td>
</tr>
<tr>
<td>person</td>
<td>birth_datetime</td>
<td>The date and time of birth of the person. </td>
</tr>
<tr>
<td>person</td>
<td>race_concept_id</td>
<td>A foreign key that refers to an identifier in the CONCEPT table for the unique race of the person,
belonging to the 'Race' vocabulary.</td>
</tr>
<tr>
<td>person</td>
<td>ethnicity_concept_id</td>
<td>A foreign key that refers to the standard concept identifier in the Standardized Vocabularies for the
ethnicity of the person, belonging to the 'Ethnicity' vocabulary.</td>
</tr>
<tr>
<td>person</td>
<td>location_id</td>
<td>A foreign key to the place of residency for the person in the location table, where the detailed address
information is stored.</td>
</tr>
<tr>
<td>person</td>
<td>provider_id</td>
<td>A foreign key to the primary care provider the person is seeing in the provider table.</td>
</tr>
<tr>
<td>person</td>
<td>care_site_id</td>
<td>A foreign key to the site of primary care in the care_site table, where the details of the care site are
stored.</td>
</tr>
<tr>
<td>person</td>
<td>person_source_value</td>
<td>An (encrypted) key derived from the person identifier in the source data. This is necessary when a use
case requires a link back to the person data at the source dataset.</td>
</tr>
<tr>
<td>person</td>
<td>gender_source_value</td>
<td>The source code for the self-reported gender or sex at birth for the participant as it appears in the
source data. The person’s response is mapped to a standard concept in the Standardized Vocabularies; the
original value is stored here for reference.</td>
</tr>
<tr>
<td>person</td>
<td>gender_source_concept_id</td>
<td>A foreign key to the self-reported gender or sex at birth concept for the participant that refers to the
code used in the source.</td>
</tr>
<tr>
<td>person</td>
<td>race_source_value</td>
<td>The source code for the race of the person as it appears in the source data. The person race is mapped
to a standard race concept in the Standardized Vocabularies and the original value is stored here for
reference.</td>
</tr>
<tr>
<td>person</td>
<td>race_source_concept_id</td>
<td>A foreign key to the race concept that refers to the code used in the source.</td>
</tr>
<tr>
<td>person</td>
<td>ethnicity_source_value</td>
<td>The source code for the ethnicity of the person as it appears in the source data. The person ethnicity
is mapped to a standard ethnicity concept in the Standardized Vocabularies and the original code is,
stored here for reference.</td>
</tr>
<tr>
<td>person</td>
<td>ethnicity_source_concept_id</td>
<td>A foreign key to the ethnicity concept that refers to the code used in the source.</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_occurrence_id</td>
<td>A unique identifier for each Condition Occurrence event.</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>person_id</td>
<td>A foreign key identifier to the Person for whom the condition is recorded. The demographic details of
that Person are stored in the PERSON table.</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_concept_id</td>
<td>A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies belonging to
the 'Condition' domain.</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_start_date</td>
<td>The date when the instance of the Condition is recorded. </td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_start_datetime</td>
<td>The date and time when the instance of the Condition is recorded. </td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_end_date</td>
<td>The date when the instance of the Condition is considered to have ended.</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_end_datetime</td>
<td>The date and time when the instance of the Condition is considered to have ended. </td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_type_concept_id</td>
<td>A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the
source data from which the Condition was recorded, the level of standardization, and the type of
occurrence. </td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>stop_reason</td>
<td>The reason that the Condition was no longer present, as indicated in the source data.</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>provider_id</td>
<td>A foreign key to the Provider in the PROVIDER table who was responsible for capturing (diagnosing) the
Condition.</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>visit_occurrence_id</td>
<td>A foreign key to the unique identifier for the visit in the VISIT_OCCURRENCE table during which the
Condition was determined (diagnosed).</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_source_value</td>
<td>The source code for the Condition as it appears in the source data. This code is mapped to a Standard
Condition Concept in the Standardized Vocabularies and the original code is stored here for reference.
</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_source_concept_id</td>
<td>A foreign key to a Condition Concept that refers to the code used in the source.</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_status_source_value</td>
<td>The source code for the condition status as it appears in the source data. This code is mapped to a
Standard Concept in the Standardized Vocabularies and the original code is stored here for reference.
</td>
</tr>
<tr>
<td>condition_occurrence</td>
<td>condition_status_concept_id</td>
<td>The source code for the condition status as it appears in the source data.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>visit_occurrence_id</td>
<td>A unique identifier for each Person's visit or encounter at a healthcare provider.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>person_id</td>
<td>A foreign key identifier to the Person for whom the visit is recorded. The demographic details of that
Person are stored in the PERSON table.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>visit_concept_id</td>
<td>A foreign key that refers to a visit Concept identifier in the Standardized Vocabularies belonging to
the 'Visit' Vocabulary.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>visit_start_date</td>
<td>The start date of the visit.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>visit_start_datetime</td>
<td>The date and time of the visit started.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>visit_end_date</td>
<td>The end date of the visit. If this is a one-day visit the end date should match the start date.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>visit_end_datetime</td>
<td> The date and time of the visit end.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>visit_type_concept_id</td>
<td>A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type
of source data from which the visit record is derived.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>provider_id</td>
<td>A foreign key to the provider in the PROVIDER table who was associated with the visit.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>care_site_id</td>
<td>A foreign key to the care site in the CARE SITE table that was visited</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>visit_source_value</td>
<td>The source code for the visit as it appears in the source data.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>visit_source_concept_id</td>
<td>A foreign key to a Concept that refers to the code used in the source.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>admitting_source_concept_id</td>
<td>A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the admitting
source for a visit.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>admitting_source_value</td>
<td>The source code for the admitting source as it appears in the source data.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>discharge_to_concept_id</td>
<td>A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the discharge
disposition for a visit.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>discharge_to_source_value</td>
<td>The source code for the discharge disposition as it appears in the source data.</td>
</tr>
<tr>
<td>visit_occurrence</td>
<td>preceding_visit_occurrence_id</td>
<td>A foreign key to the VISIT_OCCURRENCE table of the visit immediately preceding this visit.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_id</td>
<td>A unique identifier for each Person's unique interaction with the health care system.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>person_id</td>
<td>A foreign key identifier to the Person for whom the visit is recorded. The demographic details of that
Person are stored in the PERSON table.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_concept_id</td>
<td>A foreign key that refers to a visit Concept identifier in the Standardized Vocabularies belonging to
the 'Visit' Vocabulary.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_start_date</td>
<td>The start date of the encounter.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_start_datetime</td>
<td>The date and time of the encounter started.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_end_date</td>
<td>The end date of the encounter.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_end_datetime</td>
<td>The date and time of the encounter ended. </td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_type_concept_id</td>
<td>A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type
of source data from which the visit record is derived.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>provider_id</td>
<td>A foreign key to the provider in the PROVIDER table who was associated with the visit.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>care_site_id</td>
<td>A foreign key to the care site in the CARE SITE table that was visited</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_source_value</td>
<td>The source code for the visit as it appears in the source data.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_source_concept_id</td>
<td>A foreign key to a Concept that refers to the code used in the source.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>admitting_source_value</td>
<td>The source code for the admitting source as it appears in the source data.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>admitting_source_concept_id</td>
<td>A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the admitting
source for a visit.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>discharge_to_source_value</td>
<td>The source code for the discharge disposition as it appears in the source data.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>discharge_to_concept_id</td>
<td>A foreign key to the predefined concept in the Place of Service Vocabulary reflecting the discharge
disposition for a visit.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>preceding_visit_detail_id</td>
<td>A foreign key to the VISIT_OCCURRENCE table of the visit immediately preceding this visit.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_detail_parent_id</td>
<td>Use this field to find the visit detail that subsumes the given visit detail record. This is used in the
case that a visit detail record needs to be nested beyond the VISIT_OCCURRENCE/VISIT_DETAIL
relationship.</td>
</tr>
<tr>
<td>visit_detail</td>
<td>visit_occurrence_id</td>
<td>A foreign key to the unique identifier for the visit in the VISIT_OCCURRENCE table during which the
encounter occurred.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>drug_exposure_id</td>
<td>A system-generated unique identifier for each Drug utilization event.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>person_id</td>
<td>A foreign key identifier to the Person who is subjected to the Drug. The demographic details of that
Person are stored in the PERSON table.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>drug_concept_id</td>
<td>A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies belonging to
the 'Drug' domain.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>drug_exposure_start_date</td>
<td>The start date for the current instance of Drug utilization. Valid entries include a start date of a
prescription, the date a prescription was filled, or the date on which a Drug administration procedure
was recorded.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>drug_exposure_start_datetime</td>
<td>The start date and time for the current instance of Drug utilization. Valid entries include a start
datetime of a prescription, the date and time a prescription was filled, or the date and time on which a
Drug administration procedure was recorded.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>drug_exposure_end_date</td>
<td>The end date for the current instance of Drug utilization. Depending on different sources, it could be a
known or an inferred date and denotes the last day at which the patient was still exposed to Drug.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>drug_exposure_end_datetime</td>
<td>The end date and time for the current instance of Drug utilization. Depending on different sources, it
could be a known or an inferred date and time and denotes the last day at which the patient was still
exposed to Drug.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>verbatim_end_date</td>
<td>The known end date of a Drug Exposure as provided by the source.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>drug_type_concept_id</td>
<td>A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type
of Drug Exposure recorded. It indicates how the Drug Exposure was represented in the source data.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>stop_reason</td>
<td>The reason the Drug was stopped. </td>
</tr>
<tr>
<td>drug_exposure</td>
<td>refills</td>
<td>The number of refills after the initial prescription. The initial prescription is not counted, values
start with null.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>quantity</td>
<td>The quantity of drug as recorded in the original prescription or dispensing record.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>days_supply</td>
<td>The number of days of supply of the medication as prescribed. This reflects the intention of the
provider for the length of exposure.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>sig</td>
<td>The directions ('signetur') on the Drug prescription as recorded in the original prescription (and
printed on the container) or dispensing record.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>route_concept_id</td>
<td>A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies reflecting
the route of administration and belonging to the 'Route' domain.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>lot_number</td>
<td>An identifier assigned to a particular quantity or lot of Drug product from the manufacturer.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>provider_id</td>
<td>A foreign key to the provider in the PROVIDER table who initiated (prescribed or administered) the Drug
Exposure.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>visit_occurrence_id</td>
<td>A foreign key to the Visit in the VISIT_OCCURRENCE table during which the Drug Exposure was initiated.
</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>visit_detail_id</td>
<td>A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Drug Exposure was
initiated.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>drug_source_value</td>
<td>The source code for the Drug as it appears in the source data. This code is mapped to a Standard Drug
concept in the Standardized Vocabularies and the original code is, stored here for reference.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>drug_source_concept_id</td>
<td>A foreign key to a Drug Concept that refers to the code used in the source.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>route_source_value</td>
<td>The information about the route of administration as detailed in the source.</td>
</tr>
<tr>
<td>drug_exposure</td>
<td>dose_unit_source_value</td>
<td>The information about the dose unit as detailed in the source.</td>
</tr>
<tr>
<td>measurement</td>
<td>measurement_id</td>
<td>A unique identifier for each Measurement.</td>
</tr>
<tr>
<td>measurement</td>
<td>person_id</td>
<td>A foreign key identifier to the Person about whom the measurement was recorded. The demographic details
of that Person are stored in the PERSON table.</td>
</tr>
<tr>
<td>measurement</td>
<td>measurement_concept_id</td>
<td>A foreign key to the standard measurement concept identifier in the Standardized Vocabularies. These
belong to the 'Measurement' domain, but could overlap with the 'Observation' domain.</td>
</tr>
<tr>
<td>measurement</td>
<td>measurement_date</td>
<td>The date of the Measurement.</td>
</tr>
<tr>
<td>measurement</td>
<td>measurement_datetime</td>
<td>The date and time of the Measurement. Some database systems don't have a datatype of time. To
accommodate all temporal analyses, datatype datetime can be used (combining measurement_date and
measurement_time forum discussion)</td>
</tr>
<tr>
<td>measurement</td>
<td>measurement_type_concept_id</td>
<td>A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the provenance from
where the Measurement record was recorded. </td>
</tr>
<tr>
<td>measurement</td>
<td>operator_concept_id</td>
<td>A foreign key identifier to the predefined Concept in the Standardized Vocabularies reflecting the
mathematical operator that is applied to the value_as_number. </td>
</tr>
<tr>
<td>measurement</td>
<td>value_as_number</td>
<td>A Measurement result where the result is expressed as a numeric value.</td>
</tr>
<tr>
<td>measurement</td>
<td>value_as_concept_id</td>
<td>A foreign key to a Measurement result represented as a Concept from the Standardized Vocabularies (e.g.,
positive/negative, present/absent, low/high, etc.). These belong to the 'Meas Value' domain. </td>
</tr>
<tr>
<td>measurement</td>
<td>unit_concept_id</td>
<td>A foreign key to a Standard Concept ID of Measurement Units in the Standardized Vocabularies that belong
to the 'Unit' domain.</td>
</tr>
<tr>
<td>measurement</td>
<td>range_low</td>
<td>The lower limit of the normal range of the Measurement result. The lower range is assumed to be of the
same unit of measure as the Measurement value.</td>
</tr>
<tr>
<td>measurement</td>
<td>range_high</td>
<td>The upper limit of the normal range of the Measurement. The upper range is assumed to be of the same
unit of measure as the Measurement value.</td>
</tr>
<tr>
<td>measurement</td>
<td>provider_id</td>
<td>A foreign key to the provider in the PROVIDER table who was responsible for initiating or obtaining the
measurement.</td>
</tr>
<tr>
<td>measurement</td>
<td>visit_occurrence_id</td>
<td>A foreign key to the Visit in the VISIT_OCCURRENCE table during which the Measurement was recorded.</td>
</tr>
<tr>
<td>measurement</td>
<td>visit_detail_id</td>
<td>A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Measurement was taken.</td>
</tr>
<tr>
<td>measurement</td>
<td>measurement_source_value</td>
<td>The Measurement name as it appears in the source data. This code is mapped to a Standard Concept in the
Standardized Vocabularies and the original code is stored here for reference.</td>
</tr>
<tr>
<td>measurement</td>
<td>measurement_source_concept_id</td>
<td>A foreign key to a Concept in the Standard Vocabularies that refers to the code used in the source.</td>
</tr>
<tr>
<td>measurement</td>
<td>unit_source_value</td>
<td>The source code for the unit as it appears in the source data. This code is mapped to a standard unit
concept in the Standardized Vocabularies and the original code is stored here for reference.</td>
</tr>
<tr>
<td>measurement</td>
<td>value_source_value</td>
<td>The source value associated with the content of the value_as_number or value_as_concept_id as stored in
the source data.</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>procedure_occurrence_id</td>
<td>A system-generated unique identifier for each Procedure Occurrence.</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>person_id</td>
<td>A foreign key identifier to the Person who is subjected to the Procedure. The demographic details of
that Person are stored in the PERSON table.</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>procedure_concept_id</td>
<td>A foreign key that refers to a standard procedure Concept identifier in the Standardized Vocabularies.
These belong to the 'Procedure' domain.</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>procedure_date</td>
<td>The date on which the Procedure was performed.</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>procedure_datetime</td>
<td>The date and time on which the Procedure was performed.</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>procedure_type_concept_id</td>
<td>A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type
of source data from which the procedure record is derived.</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>modifier_concept_id</td>
<td>A foreign key to a Standard Concept identifier for a modifier to the Procedure (e.g. bilateral). </td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>quantity</td>
<td>The quantity of procedures ordered or administered.</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>provider_id</td>
<td>A foreign key to the provider in the PROVIDER table who was responsible for carrying out the procedure.
</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>visit_occurrence_id</td>
<td>A foreign key to the Visit in the VISIT_OCCURRENCE table during which the Procedure was carried out.
</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>procedure_source_value</td>
<td>The source code for the Procedure as it appears in the source data. This code is mapped to a standard
procedure Concept in the Standardized Vocabularies and the original code is, stored here for reference.
</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>procedure_source_concept_id</td>
<td>A foreign key to a Procedure Concept that refers to the code used in the source.</td>
</tr>
<tr>
<td>procedure_occurrence</td>
<td>qualifier_source_value</td>
<td>The source value for the qualifier as it appears in the source data.</td>
</tr>
<tr>
<td>observation</td>
<td>observation_id</td>
<td>A unique identifier for each observation.</td>
</tr>
<tr>
<td>observation</td>
<td>person_id</td>
<td>A foreign key identifier to the Person about whom the observation was recorded. The demographic details
of that Person are stored in the PERSON table.</td>
</tr>
<tr>
<td>observation</td>
<td>observation_concept_id</td>
<td>A foreign key to the standard observation concept identifier in the Standardized Vocabularies. In cases
where the recorded observation is the answer to a PPI question, this field will contain the Standard
Concept ID for the corresponding question (or, if the question is non-standard, its standard
LOINC/SNOMED equivalent).</td>
</tr>
<tr>
<td>observation</td>
<td>observation_date</td>
<td>The date of the observation.</td>
</tr>
<tr>
<td>observation</td>
<td>observation_datetime</td>
<td>The date and time of the observation.</td>
</tr>
<tr>
<td>observation</td>
<td>observation_type_concept_id</td>
<td>A foreign key to the predefined concept identifier in the Standardized Vocabularies reflecting the type
of the observation belonging to the 'Observation' domain.</td>
</tr>
<tr>
<td>observation</td>
<td>value_as_number</td>
<td>The observation result stored as a number. This is applicable to observations where the result is
expressed as a numeric value.</td>
</tr>
<tr>
<td>observation</td>
<td>value_as_string</td>
<td>The observation result stored as a string. This is applicable to observations where the result is
expressed as verbatim text.</td>
</tr>
<tr>
<td>observation</td>
<td>value_as_concept_id</td>
<td>A foreign key to an observation result stored as a Concept ID. This is applicable to observations where
the result can be expressed as a Standard Concept from the Standardized Vocabularies (e.g.,
positive/negative, present/absent, low/high, etc.). These belong to the 'Meas Value' domain. In cases
where the recorded observation is the answer to a PPI question, this field will contain the standard PPI
answer Concept ID or its standard LOINC/SNOMED equivalent (if the answer is non-standard). For PPI, this
field is derived from value_source_concept_id.</td>
</tr>
<tr>
<td>observation</td>
<td>value_source_value</td>
<td>The source value associated with the content of the value_as_number or value_as_concept_id as stored in
the source data.</td>
</tr>
<tr>
<td>observation</td>
<td>qualifier_concept_id</td>
<td>A foreign key to a Standard Concept ID for a qualifier (e.g., severity of drug-drug interaction alert)
</td>
</tr>
<tr>
<td>observation</td>
<td>unit_concept_id</td>
<td>A foreign key to a Standard Concept ID of measurement units in the Standardized Vocabularies belonging
to the 'Unit' domain.</td>
</tr>
<tr>
<td>observation</td>
<td>provider_id</td>
<td>A foreign key to the provider in the PROVIDER table who was responsible for making the observation.</td>
</tr>
<tr>
<td>observation</td>
<td>visit_occurrence_id</td>
<td>A foreign key to the visit in the VISIT_OCCURRENCE table during which the observation was recorded.</td>
</tr>
<tr>
<td>observation</td>
<td>visit_detail_id</td>
<td>A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Observation was recorded.
</td>
</tr>
<tr>
<td>observation</td>
<td>observation_source_value</td>
<td>The observation code as it appears in the source data. This code is mapped to a Standard Concept in the
Standardized Vocabularies and the original code is, stored here for reference. If the recorded
observation is the answer to a PPI question, the code for the PPI question is stored here. </td>
</tr>
<tr>
<td>observation</td>
<td>observation_source_concept_id</td>
<td>A foreign key to a Concept that refers to the code used in the source. If the recorded observation is
the answer to a PPI question, the PPI concept for the question is stored here.</td>
</tr>
<tr>
<td>observation</td>
<td>value_source_concept_id</td>
<td>A foreign key to an Observation result represented as a Concept from the Standardized Vocabularies
(e.g., positive/negative, present/absent, low/high, etc.). For EHR data, these will be from the "Meas
Val" domain.
If the recorded observation is the response to a PPI question, this field will contain the PPI concept
for the answer.</td>
</tr>
<tr>
<td>observation</td>
<td>unit_source_value</td>
<td>The source code for the unit as it appears in the source data. This code is mapped to a standard unit
concept in the Standardized Vocabularies and the original code is, stored here for reference.</td>
</tr>
<tr>
<td>observation</td>
<td>qualifier_source_value</td>
<td>The source value associated with a qualifier to characterize the observation</td>
</tr>
<tr>
<td>observation_period</td>
<td>observation_period_id</td>
<td>A unique identifier for each observation period</td>
</tr>
<tr>
<td>observation_period</td>
<td>person_id</td>
<td>A foreign key identifier to the person for whom the observation period is defined. The demographic
details of that person are stored in the PERSON table</td>
</tr>
<tr>
<td>observation_period</td>
<td>observation_period_start_date</td>
<td>The start date of the observation period for which data are available from the data source</td>
</tr>
<tr>
<td>observation_period</td>
<td>observation_period_end_date</td>
<td>The end date of the observation period for which data are available from the data source</td>
</tr>
<tr>
<td>observation_period</td>
<td>period_type_concept_id</td>
<td>A foreign key identifier to the predefined concept in the Standardized Vocabularies reflecting the
source of the observation period information, belonging to the 'Obs Period Type' vocabulary</td>
</tr>
<tr>
<td>device_exposure</td>
<td>device_exposure_id</td>
<td>A system-generated unique identifier for each Device Exposure.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>person_id</td>
<td>A foreign key identifier to the Person who is subjected to the Device. The demographic details of that
Person are stored in the PERSON table.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>device_concept_id</td>
<td>A foreign key that refers to a Standard Concept identifier in the Standardized Vocabularies belonging to
the 'Device' domain.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>device_exposure_start_date</td>
<td>The date the Device or supply was applied or used.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>device_exposure_start_datetime</td>
<td>The date and time the Device or supply was applied or used.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>device_exposure_end_date</td>
<td>The date use of the Device or supply was ceased.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>device_exposure_end_datetime</td>
<td>The date and time use of the Device or supply was ceased.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>device_type_concept_id</td>
<td>A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the type
of Device Exposure recorded. It indicates how the Device Exposure was represented in the source data and
belongs to the 'Device Type' domain.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>unique_device_id</td>
<td>A UDI or equivalent identifying the instance of the Device used in the Person.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>quantity</td>
<td>The number of individual Devices used in the exposure.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>provider_id</td>
<td>A foreign key to the provider in the PROVIDER table who initiated or administered the Device.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>visit_occurrence_id</td>
<td>A foreign key to the visit in the VISIT_OCCURRENCE table during which the Device was used.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>visit_detail_id</td>
<td>A foreign key to the Visit Detail in the VISIT_DETAIL table during which the Device Exposure was
initiated.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>device_source_value</td>
<td>The source code for the Device as it appears in the source data. This code is mapped to a Standard
Device Concept in the Standardized Vocabularies and the original code is stored here for reference.</td>
</tr>
<tr>
<td>device_exposure</td>
<td>device_source_concept_id</td>
<td>A foreign key to a Device Concept that refers to the code used in the source.</td>
</tr>
<tr>
<td>death</td>
<td>person_id</td>
<td>A foreign key identifier to the deceased person. The demographic details of that person are stored in
the PERSON table.</td>
</tr>
<tr>
<td>death</td>
<td>death_date </td>
<td>The date the person was deceased. If the precise date including day or month is not known or not
allowed, December is used as the default month, and the last day of the month the default day.</td>
</tr>
<tr>
<td>death</td>
<td>death_datetime</td>
<td>The date and time the person was deceased. If the precise date including day or month is not known or
not allowed, December is used as the default month, and the last day of the month the default day.</td>
</tr>
<tr>
<td>death</td>
<td>death_type_concept_id</td>
<td>A foreign key referring to the predefined concept identifier in the Standardized Vocabularies reflecting
how the death was represented in the source data.</td>
</tr>
<tr>
<td>death</td>
<td>cause_concept_id</td>
<td>A foreign key referring to a standard concept identifier in the Standardized Vocabularies for
conditions.</td>
</tr>
<tr>
<td>death</td>
<td>cause_source_value</td>
<td>The source code for the cause of death as it appears in the source data. This code is mapped to a
standard concept in the Standardized Vocabularies and the original code is, stored here for reference.
</td>
</tr>
<tr>
<td>death</td>
<td>cause_source_concept_id</td>
<td>A foreign key to the concept that refers to the code used in the source. Note, this variable name is