forked from all-of-us/aou-ehr-file-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeath.json
44 lines (44 loc) · 1.86 KB
/
death.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
[
{
"type": "integer",
"name": "person_id",
"mode": "required",
"description": "A foreign key identifier to the deceased person. The demographic details of that person are stored in the person table."
},
{
"type": "date",
"name": "death_date",
"mode": "required",
"description": "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."
},
{
"type": "timestamp",
"name": "death_datetime",
"mode": "nullable",
"description": "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."
},
{
"type": "integer",
"name": "death_type_concept_id",
"mode": "required",
"description": "A foreign key referring to the predefined concept identifier in the Standardized Vocabularies reflecting how the death was represented in the source data."
},
{
"type": "integer",
"name": "cause_concept_id",
"mode": "nullable",
"description": "A foreign key referring to a standard concept identifier in the Standardized Vocabularies for conditions."
},
{
"type": "string",
"name": "cause_source_value",
"mode": "nullable",
"description": "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."
},
{
"type": "integer",
"name": "cause_source_concept_id",
"mode": "nullable",
"description": "A foreign key to the concept that refers to the code used in the source. Note, this variable name is abbreviated to ensure it will be allowable across database platforms."
}
]