forked from hesusruiz/COVID19-Credential-Data-Model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-covid-result-sample.json
195 lines (181 loc) · 5.36 KB
/
test-covid-result-sample.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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{
"@context": ["https://www.w3.org/2018/credentials/v1"],
"id": "http://example.edu/credentials/1872",
"type": ["VerifiableCredential", "TestResultCredential"],
"issuer": "https://example.edu/issuers/565049",
"issuanceDate": "2010-01-01T19:73:24Z",
"credentialSubject": {
"id": "did:example:ebfeb1f712ebc6f1c276e12ec21",
"resource": {
"@context": ["http://hl7.org/fhir"],
"resourceType": "Bundle",
"id": "XXXX",
"type": "collection",
"entry": [
{
"fullUrl": "https://example.com/base/DiagnosticReport/YYYYY",
"resource": {
"resourceType": "DiagnosticReport",
"id": "YYYYY",
"status": "final",
"category": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "15220000",
"display": "Laboratory test"
},
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0074",
"code": "LAB"
}
]
}
],
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "870361009",
"display": "SARS-CoV-2 IgG"
}
]
},
"subject": {
"reference": "Patient/f001",
"display": "Patient f001"
},
"issued": "2013-03-11T10:28:00+01:00",
"performer": [
{
"reference": "Organization/1906877",
"display": "Madrid Clinical Lab"
}
],
"result": [
{
"reference": "Observation/ZZZZ",
"display": "Resultado de prueba rápida para detección de anticuerpos IgM e IgG frente a SARS-CoV-2 en sangre"
}
],
"conclusion": "SARS-CoV-2: IgM e IgG totales negativo",
"conclusionCode": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "63741000122103",
"display": "Test result of antibodies against SARS-CoV-2: total IgM and IgG negative (finding)"
}
]
}
]
}
},
{
"fullUrl": "https://example.com/base/Observation/ZZZZ",
"resource": {
"resourceType": "Observation",
"id": "ZZZZ",
"status": "final",
"category": {
"coding": {
"system": "http://terminology.hl7.org/CodeSystem/observation-category",
"code": "laboratory",
"display": "Laboratory"
}
},
"code": {
"coding": {
"system": "http://snomed.info/sct",
"code": "870361009",
"display": "SARS-CoV-2 IgG"
}
},
"subject": {
"reference": "Patient/f001",
"display": "Patient f001"
},
"performer": [
{
"reference": "Organization/1906877",
"display": "Madrid Clinical Lab"
}
],
"valueQuantity": {
"value": "70",
"unit": "AU/ml",
"system": "http://unitsofmeasure.org",
"code": "[AU_ml]"
},
"interpretation": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation",
"code": "NEG",
"display": "Negative"
}
]
}
],
"referenceRange": [
{
"high": {
"value": 79
},
"meaning": {
"text": "Indice inferior a 0.80 - Ausencia de niveles detectables de Anticuerpos"
}
},
{
"low": {
"value": 80
},
"high": {
"value": 109
},
"meaning": {
"text": "Indice entre 0.80 - 1.09 - Zona limite"
}
},
{
"low": {
"value": 110
},
"meaning": {
"text": "Indice igual o superior a 1.10 - Presencia de Anticuerpos"
}
}
]
}
},
{
"resourceType": "Organization",
"id": "1906877",
"identifier": [
{
"system": "urn:oid:1.3.6.1.4.1.19126.21",
"value": "B-8268647888"
}
],
"name": "Madrid Clinical Lab",
"telecom": [
{
"system": "phone",
"value": "+34 555 123 456",
"use": "work"
},
{
"system": "email",
"value": "[email protected]",
"use": "work"
}
]
}
]
}
},
"proof": {}
}