Condition |
Top Previous Next |
A clinical condition, problem, diagnosis, or other event, situation, issue, or clinical concept that has risen to a level of concern. Health Concerns and Problem list are available with the Condition resource. Response Description Sample Response { "resourceType": "Condition", "id": "DEV-DEV-11913-17267", "meta": { "lastUpdated": "2022-11-08T12:00:00-05:00", "profile": [ "http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition" ] }, "text": { "status": "generated", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table><tbody><tr><td>Patient:</td><td>Cole Andersonian (DEV-DEV-11913)</td></tr><tr><td>Encounter:</td><td>accountLevel</td></tr><tr><td></td></tr><tr><td>Status:</td><td>inactive</td></tr><tr><td>Condition:</td><td>Diabetes mellitus (SNOMED-CT: 73211009)</td></tr><tr><td>Onset Date</td><td>01/09/2015</td></tr><tr><td></td></tr><tr><td>Recorded Date:</td><td>11/08/2022</td></tr><tr><td>Recorder:</td><td>gvtadaws</td></tr></tbody></table></div>" }, "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/condition-assertedDate", "valueDateTime": "2022-11-08" } ], "clinicalStatus": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/condition-clinical", "code": "active", "display": "Active" } ] }, "verificationStatus": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status", "code": "unconfirmed", "display": "Unconfirmed" } ] }, "category": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/condition-category", "code": "problem-list-item", "display": "Problem List Item" } ] } ], "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "73211009", "display": "Diabetes mellitus (disorder)" } ], "text": "Diabetes mellitus" }, "subject": { "reference": "Patient/DEV-DEV-11913", "display": "Cole Andersonian (DEV-DEV-11913)" }, "onsetDateTime": "2015-01-09", "note": [ { "text": "Not clear whether this was originally type 1 or type 2 diabetes, but patient is now ID and brittle." } ], "recordedDate": "2022-11-08", "recorder": { "reference": "Practitioner/GVTADAWS" } }
Condition.id
The logical ID of the resource, as used in the URL for the resource. Once assigned, this value never changes.
Condition.meta
Metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content might not always be associated with version changes to the resource.
Condition.text
A human-readable narrative that contains a summary of the resource and can be used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it "clinically safe" for a human to just read the narrative.
Condition.clinicalStatus
The clinical status of the condition.
Condition.verificationStatus
Whether the condition has been confirmed
Condition.category
A category assigned to the condition.
Condition.code
Identification of the condition, problem or diagnosis. This is expected to be an ICD-10 code or SNOMED-CT.
Condition.subject
Indicates the patient or group with whom the condition record is associated.
Condition.encounter
The resource ID of the Encounter during which this Condition was created or to which the creation of this record is tightly associated.
Condition.onsetDateTime
Estimated or actual date-time the condition began, in the opinion of the clinician.
Condition.abatementDateTime
Estimated or actual date-time the condition resolved, in the opinion of the clinician.
Condition.note
Additional information about the Condition
Condition.recordedDate
Represents when this particular Condition record was created in the system, which is often a system-generated date.
Condition.recorder
Who recorded the Condition
Search
URL SyntaxTwo HTTP methods are supported for searching: GET and POST. It is recommended to use HTTP POST. Visit the FHIR Sandbox to try requests.
HTTP GET - searching https://sandbox.pai.healthcare/preview/fhir/Condition?{query string}
HTTP GET - return single record https://sandbox.pai.healthcare/preview/fhir/Condition/{resource id}
HTTP POST - searching https://sandbox.pai.healthcare/preview/fhir/Condition/_search •Set the Content-Type header to application/x-www-urlencoded •The body of the request is a similar query string used in the GET type of request detailed above.
Error HandlingIf no records are returned or invalid search parameters are provided, then an HTTP 400 Bad Request is returned. The body of the response will be an OperationOutcome.
Supported Search Parameters
_id
patient
encounter
onset-date
clinical-status
code
name
|