forked from all-of-us/aou-ehr-file-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnote.json
86 lines (86 loc) · 2.53 KB
/
note.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
[
{
"type": "integer",
"name": "note_id",
"mode": "required",
"description": "A unique identifier for each note."
},
{
"type": "integer",
"name": "person_id",
"mode": "required",
"description": "A foreign key identifier to the Person about whom the Note was recorded. The demographic details of that Person are stored in the PERSON table."
},
{
"type": "date",
"name": "note_date",
"mode": "required",
"description": "The date the note was recorded."
},
{
"type": "timestamp",
"name": "note_datetime",
"mode": "required",
"description": "The date and time the note was recorded."
},
{
"type": "integer",
"name": "note_type_concept_id",
"mode": "required",
"description": "A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the type, origin or provenance of the Note."
},
{
"type": "integer",
"name": "note_class_concept_id",
"mode": "required",
"description": "A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the HL7 LOINC Document Type Vocabulary classification of the note."
},
{
"type": "string",
"name": "note_title",
"mode": "required",
"description": "The title of the Note as it appears in the source."
},
{
"type": "string",
"name": "note_text",
"mode": "required",
"description": "The content of the Note."
},
{
"type": "integer",
"name": "encoding_concept_id",
"mode": "required",
"description": "A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the note character encoding type"
},
{
"type": "integer",
"name": "language_concept_id",
"mode": "required",
"description": "A foreign key to the predefined Concept in the Standardized Vocabularies reflecting the language of the note"
},
{
"type": "integer",
"name": "provider_id",
"mode": "nullable",
"description": "A foreign key to the Provider in the PROVIDER table who took the Note."
},
{
"type": "integer",
"name": "visit_occurrence_id",
"mode": "nullable",
"description": "A foreign key to the Visit in the VISIT_OCCURRENCE table when the Note was taken."
},
{
"type": "integer",
"name": "visit_detail_id",
"mode": "nullable",
"description": "The Visit Detail during which the note was written."
},
{
"type": "string",
"name": "note_source_value",
"mode": "nullable",
"description": "The source value associated with the origin of the Note"
}
]