The FHIR STU3 Condition resource describes a clinical condition, problem, diagnosis, or other event, situation, issue, or clinical concept that has risen to a level of concern.
FHIR Resource: Condition <https://www.hl7.org/fhir/condition.html>
Supported Attributes
| Name | Comment |
|---|---|
clinicalStatus |
|
onset |
|
subject |
|
code |
ICD10, Snomed |
asserter |
|
assertedDate |
|
category |
Condition / Problem / Complaint |
encounter |
A reference to an Encounter resource |
Cause of death |
https://api.healthgorilla.com/fhir/ConditionFHIR Operations
The following operations are currently supported:
1. Read
| HTTP Request | Method | Action |
|---|---|---|
/Condition/{ID} | GET | Retrieve Condition resource by ID |
2. Search
| HTTP Request | Method | Action |
|---|---|---|
/Condition?[parameter={value}] | GET | Retrieve Condition resources by the specified search criteria |
Parameters:
| Key | Type | Description |
|---|---|---|
| patient | Reference | Patient Identifier |
| _lastUpdated | Date | |
| _offset | Number | |
| _count | Number | |
| code | Token | searches against Condition.code |
Examples
2.1 Retrieve Conditions by patient
https://api.healthgorilla.com/fhir/Condition?patient=8063965523692105bfc35def2.2 Search records updated since March 2019
https://api.healthgorilla.com/fhir/Condition?_lastUpdated=gt2019-03&_offset=0&_count=52.3 Retrieve records for the given patient updated in 2018
https://api.healthgorilla.com/fhir/Condition?patient=8063965523692105bfc35def&_lastUpdated=20183. Create
| HTTP Request | Method | Action |
|---|---|---|
| /Condition | POST | Creates Condition resource |
The following attributes are required:
| Name | Details |
|---|---|
| subject | |
| code |
4. Update
| HTTP Request | Method | Action |
|---|---|---|
/Condition/{ID} | PUT | Updates Condition resource |
The following attributes are immutable:
| Name | Details |
|---|---|
| subject | |
| code |
5. Delete
| HTTP Request | Method | Action |
|---|---|---|
/Condition/{ID} | DELETE | Deletes Condition resource |
