-
Notifications
You must be signed in to change notification settings - Fork 19
/
observation_period.json
42 lines (42 loc) · 1.43 KB
/
observation_period.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
[
{
"type": "integer",
"name": "observation_period_id",
"mode": "required",
"description": "A unique identifier for each observation period."
},
{
"type": "integer",
"name": "person_id",
"mode": "required",
"description": "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."
},
{
"type": "date",
"name": "observation_period_start_date",
"mode": "required",
"description": "The start date of the observation period for which data are available from the data source."
},
{
"type": "timestamp",
"name": "observation_period_start_datetime",
"mode": "required"
},
{
"type": "date",
"name": "observation_period_end_date",
"mode": "required",
"description": "The end date of the observation period for which data are available from the data source."
},
{
"type": "timestamp",
"name": "observation_period_end_datetime",
"mode": "required"
},
{
"type": "integer",
"name": "period_type_concept_id",
"mode": "required",
"description": "A foreign key identifier to the predefined concept in the Standardized Vocabularies reflecting the source of the observation period information"
}
]