This repository was archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathcondition.yaml
More file actions
366 lines (349 loc) · 11.4 KB
/
condition.yaml
File metadata and controls
366 lines (349 loc) · 11.4 KB
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
---
name: Condition
field_name_base_url: https://hl7.org/fhir/r4/condition-definitions.html#Condition
fields:
- name: resourceType
required: 'Yes'
type: string
description: The type of the FHIR resource.
example: |
{
"resourceType": "Condition"
}
note: resourceType must be Condition.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition
- name: id
required: 'Yes'
type: id
description: The logical id of the resource to update.
action: update
example: |
{
"id": "p123412"
}
note: The id value must match the Condition/<id> value.
url: https://hl7.org/fhir/resource-definitions.html#Resource.id
- name: clinicalStatus
type: CodeableConcept
description: active | recurrence | relapse | inactive | remission | resolved
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.clinicalStatus
action: terminology
binding:
description: The clinical status of the condition.
terminology:
- display: Condition Clinical Status Codes
system: http://terminology.hl7.org/CodeSystem/condition-clinical
info_link: https://hl7.org/fhir/r4/valueset-condition-clinical.html
- name: clinicalStatus
required: 'Yes'
type: CodeableConcept
description: The clinical status of the condition.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.clinicalStatus
action: create
note: |
<ul>
<li> A clinicalStatus must always be provided while creating a Condition. </li>
<li> Only the <code>active</code> code is supported when the category is <code>encounter-diagnosis</code>. </li>
</ul>
example: |
{
"clinicalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
"code": "resolved",
"display": "Resolved"
}
],
"text": "Resolved"
}
}
- name: clinicalStatus
required: 'No'
type: CodeableConcept
description: The clinical status of the condition.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.clinicalStatus
action: update
note: |
<ul>
<li> A clinicalStatus must always be provided when updating a Condition, unless verificationStatus is <code>entered-in-error</code>. </li>
<li> Only the <code>active</code> code is supported when the category is <code>encounter-diagnosis</code>. </li>
</ul>
example: |
{
"clinicalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
"code": "resolved",
"display": "Resolved"
}
],
"text": "Resolved"
}
}
- name: verificationStatus
type: CodeableConcept
action: terminology
description: unconfirmed | provisional | differential | confirmed | refuted | entered-in-error
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.verificationStatus
binding:
description: The verification status to support or decline the clinical status of the condition or diagnosis.
terminology:
- display: Condition Verification Status Codes
system: http://terminology.hl7.org/CodeSystem/condition-ver-status
info_link: https://hl7.org/fhir/r4/valueset-condition-ver-status.html
- name: verificationStatus
required: 'No'
type: CodeableConcept
description: The verification status to support or decline the clinical status of the condition or diagnosis.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.verificationStatus
action: create
note: verificationStatus codes of <code>entered-in-error</code> and <code>refuted</code> are not supported during Condition creates.
example: |
{
"verificationStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
"code": "confirmed",
"display": "Confirmed"
}
],
"text": "Confirmed"
}
}
- name: verificationStatus
required: 'No'
type: CodeableConcept
description: The verification status to support or decline the clinical status of the condition or diagnosis.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.verificationStatus
action: update
example: |
{
"verificationStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
"code": "confirmed",
"display": "Confirmed"
}
],
"text": "Confirmed"
}
}
- name: category
required: 'Yes'
type: List of CodeableConcept
description: A category assigned to the condition.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.category
note: |
<ul>
<li> Only a single category may be provided. </li>
<li> Category codes <code>problem-list-item</code> and <code>encounter-diagnosis</code> are supported. </li>
</ul>
example: |
{
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-category",
"code": "problem-list-item",
"display": "Problem List Item"
}
],
"text": "Problem List Item"
}
]
}
binding:
description: A category assigned to the condition.
terminology:
- display: Condition Category Codes
system: http://terminology.hl7.org/CodeSystem/condition-category
info_link: https://hl7.org/fhir/r4/valueset-condition-category.html
- name: severity
required: 'No'
type: CodeableConcept
description: A subjective assessment of the severity of the condition as evaluated by the clinician.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.severity
example: |
{
"severity": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "255604002",
"display": "Mild"
}
]
}
}
example2: |
{
"severity": {
"coding": [
{
"system": "https://fhir.cerner.com/0b8a0111-e8e6-4c26-a91c-5069cbc6b1ca/codeSet/12022",
"code": "3293",
"display": "Mild"
}
]
}
}
binding:
description: A subjective assessment of the severity of the condition as evaluated by the clinician.
terminology:
- display: SNOMED CT
system: http://snomed.info/sct
info_link: https://hl7.org/fhir/r4/snomedct.html
- display: Millennium Condition Severity
system: https://fhir.cerner.com/<EHR source id>/codeSet/12022
info_link: https://fhir.cerner.com/millennium/r4/proprietary-codes-and-systems/#code-set-12022-severity
- name: code
required: 'Yes'
type: CodeableConcept
description: Identification of the condition, problem or diagnosis.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.code
note: A code must be provided.
example: |
{
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "209832007",
"display": "Concussion NOS (disorder)",
"userSelected": true
}
],
"text": "Concussion with loss of consciousness"
}
}
binding:
description: Identification of the condition, problem or diagnosis.
terminology:
- display: SNOMED CT
system: http://snomed.info/sct
info_link: https://hl7.org/fhir/r4/snomedct.html
- display: ICD-9-CM
system: http://hl7.org/fhir/sid/icd-9-cm
info_link: https://hl7.org/fhir/icd.html
- display: ICD-10-CM
system: http://hl7.org/fhir/sid/icd-10-cm
info_link: https://hl7.org/fhir/icd.html
- name: subject
required: 'Yes'
type: Reference
description: Indicates the patient who the condition record is associated with.
example: |
{
"subject": {
"reference": "Patient/631923",
"display": "Nilsson, Christine"
}
}
note: subject must be a reference to a Patient.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.subject
- name: encounter
required: 'No'
type: Reference
description: Encounter during which the condition was first asserted.
example: |
{
"encounter": {
"reference": "Encounter/631923"
}
}
note: |
<ul>
<li> encounter must be a reference to an Encounter. </li>
<li> encounter is required when the condition category code is <code>encounter-diagnosis</code>. </li>
</ul>
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.encounter
action: create
- name: encounter
required: 'No'
type: Reference
description: Encounter during which the condition was first asserted.
example: |
{
"encounter": {
"reference": "Encounter/631923"
}
}
note: |
<ul>
<li> encounter must be a reference to an Encounter. </li>
<li> encounter is only supported for Conditions with a category of <code>encounter-diagnosis</code>. </li>
</ul>
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.encounter
action: update
- name: onset[x]
required: 'No'
type: dateTime
description: Estimated or actual date or date-time the condition began, in the opinion of the clinician.
note: |
<ul>
<li> Only a type of dateTime is supported. </li>
<li> The dateTime is converted to a GMT date. </li>
</ul>
example: |
{
"onsetDateTime": "2015-10-14T13:13:20-06:00"
}
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.onset_x_
- name: abatement[x]
required: 'No'
type: dateTime
description: The date or estimated date that the condition resolved or went into remission.
note: |
<ul>
<li> Only a type of dateTime is supported. </li>
<li> The dateTime is converted to a GMT date. </li>
<li> <code>abatementDateTime</code> is not supported for Conditions with a category of <code>encounter-diagnosis</code>. </li>
</ul>
example: |
{
"abatementDateTime": "2015-10-14T13:13:20-06:00"
}
note: <code>abatementDateTime</code> is not supported for Conditions with a category of <code>encounter-diagnosis</code>.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.abatement_x_
- name: note
required: 'No'
type: List of Annotation
description: Additional information about the Condition. This is a general notes/comments entry for description of the Condition, its diagnosis and prognosis.
action: create
example: |
{
"note": [
{
"authorReference": {
"reference": "Practitioner/4594011",
"display": "Leroux, Erik"
},
"text": "Test Comment 2"
}
]
}
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.note
- name: note
required: 'No'
type: List of Annotation
description: Additional information about the Condition. This is a general notes/comments entry for description of the Condition, its diagnosis and prognosis.
action: update
example: |
{
"note": [
{
"authorReference": {
"reference": "Practitioner/4594011",
"display": "Leroux, Erik"
},
"text": "Test Comment 2"
}
]
}
note: note cannot be added if note already exists. An existing note field cannot be modified.
url: https://hl7.org/fhir/r4/condition-definitions.html#Condition.note