Description: Clinical Problem or Historical Diagnosis.
Reference: Condition in FHIR specification.
| Name | Type | Required | Description |
|---|---|---|---|
| _count | number | False | Number of resources to return. |
| clinicalstatus | string | False | Clinical status of the Condition. |
| code | number | False | SNOMED/LOINC code for the Condition. |
| date | date | False | Date/time of the Condition. |
| encounter | reference | False | Which ED visit the Condition is for. |
| patient | reference | False | Who the Condition is for. |
| subject | reference | False | Who the Condition is for. |
* See Date Search for more information on searching by date.
Sample Request:
GET https://greathospital.com:8100/r4/sites/123/Condition?patient=1
Sample Request:
GET https://greathospital.com:8100/r4/sites/123/Condition/dp-1
Sample Request:
POST https://greathospital.com:8100/r4/sites/123/Condition
Body:
{
"resourceType": "Condition",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Condition</b></p><p><b>Date Asserted:</b>: 2017-01-26</p><p><b>Code:</b> <p><b>Text</b>: Arthritis</p><p><b>System</b>: http://snomed.info/sct</p><p><b>Code</b>: 3723001</p><p><b>Display</b>: Arthritis</p></p><p><b>Category</b>: Problem List Item</p><p><b>Clinical Status:</b> Active</p><p><b>Verification Status:</b> Confirmed</p><p><b>Onset:</b> 2000-05</p><p><b>Abatement:</b> </p><p><b>Notes:</b> Very debilitating.</p></div>"
},
"clinicalStatus": "active",
"verificationStatus": "confirmed",
"category": [
{
"coding": [
{
"system": "http://hl7.org/fhir/condition-category",
"code": "problem-list-item",
"display": "Problem List Item"
}
],
"text": "Problem List Item"
}
],
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "3723001",
"display": "Arthritis"
}
],
"text": "Arthritis"
},
"subject": {
"reference": "https://greathospital.com:8100/r4/sites/123/Patient/",
"display": "MURPHY, Ryan"
},
"onsetDateTime": "2000-05",
"assertedDate": "2017-01-26",
"asserter": {
"reference": "https://greathospital.com:8100/r4/sites/123/Practitioner/4cb36792-7bc0-41ed-8859-dbf59ea800e6",
"display": "Feltner, Chuck"
},
"note": [
{
"text": "Very debilitating."
}
]
}