forked from all-of-us/aou-ehr-file-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource_to_concept_map.json
56 lines (56 loc) · 1.89 KB
/
source_to_concept_map.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
[
{
"type": "string",
"name": "source_code",
"mode": "required",
"description": "The source code being translated into a Standard Concept."
},
{
"type": "integer",
"name": "source_concept_id",
"mode": "required",
"description": "A foreign key to the Source Concept that is being translated into a Standard Concept."
},
{
"type": "string",
"name": "source_vocabulary_id",
"mode": "required",
"description": "A foreign key to the VOCABULARY table defining the vocabulary of the source code that is being translated to a Standard Concept."
},
{
"type": "string",
"name": "source_code_description",
"mode": "nullable",
"description": "An optional description for the source code. This is included as a convenience to compare the description of the source code to the name of the concept."
},
{
"type": "integer",
"name": "target_concept_id",
"mode": "required",
"description": "A foreign key to the target Concept to which the source code is being mapped."
},
{
"type": "string",
"name": "target_vocabulary_id",
"mode": "required",
"description": "A foreign key to the VOCABULARY table defining the vocabulary of the target Concept."
},
{
"type": "date",
"name": "valid_start_date",
"mode": "required",
"description": "The date when the mapping instance was first recorded."
},
{
"type": "date",
"name": "valid_end_date",
"mode": "required",
"description": "The date when the mapping instance became invalid because it was deleted or superseded (updated) by a new relationship. Default value is 31-Dec-2099."
},
{
"type": "string",
"name": "invalid_reason",
"mode": "nullable",
"description": "Reason the mapping instance was invalidated. Possible values are D (deleted), U (replaced with an update) or NULL when valid_end_date has the default value."
}
]