The Observation Imaging Result resource in Edvak Health EHR represents diagnostic imaging findings derived from procedures such as CT, MRI, or ultrasound. These observations are categorized under "imaging" and typically include structured data like numeric values or coded results, as well as unstructured findings.Must Support Elements#
category (must support: imaging)
value[x] (valueQuantity, valueCodeableConcept, valueString)
Supported Search Combinations#
1.
By Patient ID
GET /Observation?patient=Patient/{id}
2.
By Patient and Category (imaging)
GET /Observation?patient=Patient/{id}&category=http://terminology.hl7.org/CodeSystem/observation-category|imaging
3.
By Patient and Code
GET /Observation?patient=Patient/{id}&code=http://loinc.org|{code}
4.
By Patient, Category and Date
GET /Observation?patient=Patient/{id}&category=http://terminology.hl7.org/CodeSystem/observation-category|imaging&date=ge2023-01-01
5.
By Patient, Category and Status
GET /Observation?patient=Patient/{id}&category=http://terminology.hl7.org/CodeSystem/observation-category|imaging&status=final
6.
By Patient, Code and Date
GET /Observation?patient=Patient/{id}&code=http://loinc.org|{code}&date=ge2023-01-01
Query Parameters#
Name | Type | Required | Example | Description |
---|
patient | string | Yes | Patient/123 | Reference to the patient resource |
category | token | Optional | http://terminology.hl7.org/CodeSystem/observation-category|imaging | Filter by imaging category |
code | token | Optional | http://loinc.org|18782-3 | LOINC or local code for observation type |
date | date | Optional | ge2023-01-01 | Observation effective date with comparator |
status | token | Optional | final | Observation status (e.g. final, amended) |
All endpoints require a valid Bearer token.Header | Type | Required | Example |
---|
Authorization | string | Yes | Bearer <ACCESS_TOKEN> |
Standard Responses#
Code | Description |
---|
200 | OK – Successful request |
400 | Bad Request |
401 | Unauthorized |
404 | Not Found |
500 | Internal Server Error |
Modified at 2025-05-11 05:13:45