-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdocument_reference.json.erb
122 lines (122 loc) · 2.45 KB
/
document_reference.json.erb
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
{
"resourceType": "DocumentReference",
"id": "<%= @id %>",
"text": {
"status": "generated",
"div": "<%= @div %>"
},
"identifier": [
{
"system": "https://github.com/ImagingInformatics/hackathon-dataset/",
"value": "89573"
}
],
"subject": {
"reference": "Patient/<%= @patient_id %>"
},
"type":
<%= @parent_resource_code %>,
"class": {
"coding": [
<%= @document_class_code %>
]
},
"author": [
{
"reference": "Practitioner/siimmd"
},
{
"reference": "#a2"
}
],
"custodian": {
"reference": "Organization/siim"
},
"authenticator": {
"reference": "Practitioner/siimmd"
},
"created": "<%= @created %>",
"indexed": "<%= @created %>",
"status": "current",
"docStatus": {
"coding": [
{
"system": "http://hl7.org/fhir/composition-status",
"code": "final",
"display": "Final"
}
]
},
"description": "Physical",
"securityLabel": [
{
"coding": [
{
"system": "http://hl7.org/fhir/v3/Confidentiality",
"code": "V",
"display": "very restricted"
}
]
}
],
"content": [
{
"attachment": {
"contentType": "application/json-fhir",
"language": "en-US",
"url": "<%= @parent_resource_type + "/" + @parent_id %>"
},
"format": [
{
"system": "http://hl7.org/fhir/diagnosticreport.html",
"display": "FHIR DiagnosticReport Specification"
}
]
}
],
"context": {
"encounter": {
"reference": "Encounter/xcda"
},
"event": [
{
"coding": [
<%= @parent_resource_code %>
]
}
],
"period": {
"start": "2004-12-23T08:00:00+11:00",
"end": "2004-12-23T08:01:00+11:00"
},
"facilityType": {
"coding": [
{
"system": "https://loinc.org/document-ontology/",
"code": "Outpatient",
"display": "Outpatient"
}
]
},
"practiceSetting": {
"coding": [
{
"system": "https://loinc.org/document-ontology/",
"code": "Radiology",
"display": "Radiology"
}
]
},
"sourcePatientInfo": {
"reference": "Patient/<%= @patient_id %>"
},
"related": [
{
"identifier": <%= @patient_identifier %>,
"ref": {
"reference": "Patient/<%= @patient_id %>"
}
}
]
}
}