Observation
The Observation resource in Edvak Health EHR represents clinical test results excluding lab and imaging. It includes structured and narrative findings such as ECG, eye exams, or functional tests.
Must Support Elements
- status
- category (must include
clinical-test
) - code
- subject
- effectiveDateTime
- value[x] (valueQuantity, valueCodeableConcept, valueString)
- dataAbsentReason
Supported Search Combinations
-
By Patient and Category
GET /Observation?patient=Patient/{id}&category=http://terminology.hl7.org/CodeSystem/observation-category|clinical-test -
By Patient and Code
GET /Observation?patient=Patient/{id}&code=http://loinc.org|44974-4 -
By Patient, Category, and Date
GET /Observation?patient=Patient/{id}&category=http://terminology.hl7.org/CodeSystem/observation-category|clinical-test&date=ge2023-01-01 -
By Patient, Category, and Status
GET /Observation?patient=Patient/{id}&category=http://terminology.hl7.org/CodeSystem/observation-category|clinical-test&status=final -
By Patient, Code, and Date
GET /Observation?patient=Patient/{id}&code=http://loinc.org|2339-0&date=ge2023-01-01
Authorization Header
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 |