Skip to Main Content

R4 APIs (Millennium)

Announcement

For information related to the Oracle Partner Network (OPN) Industry Healthcare Track please visit our OPN Industry Healthcare Program page.

For specific questions related to Oracle Partner Network (OPN), please contact Partner Assistance.

Millennium FHIR and non-FHIR API Specifications and Supporting Documents can be found HERE on docs.oracle.com
Soarian FHIR API Specifications and Supporting Documents can be found HERE on docs.oracle.com.

/POST /Condition does not respect clinical status value

Kelly HilliardJun 18 2024 — edited Jun 18 2024

Workflow or API calls:

When adding a new condition, the sent clinical status is not used. It seems like ones that are clinically “active” are always tagged as active. For example, recurrence. Here is the body of an example that shows this problem

{
"resourceType": "Condition",
"clinicalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
"code": "recurrence",
"display": "Recurrence"
}
],
"text": "Recurrence"
},
"verificationStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
"code": "confirmed",
"display": "Confirmed"
}
],
"text": "Confirmed"
},
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/condition-category",
"code": "problem-list-item",
"display": "Problem List Item"
}
],
"text": "Problem List Item"
}
],
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "35489007",
"display": "Depression"
}
],
"text": "Depression"
},
"subject": {
"reference": "Patient/12746485",
"display": "SMART, ELIZABETH"
},
"onsetDateTime": "2021",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Condition</b></p><p><b>Code</b>: Depression</p><p><b>Clinical Status</b>: Recurrence</p><p><b>Onset</b>: 2021</p></div>"
},
"patient": {
"reference": "Patient/12746485",
"display": "SMART, ELIZABETH"
}
}

Expected Result:

When retrieved, the clinical status should be recurrence.

Actual Result:

The clinical status is active.

X-Request-Id / Cerner-Correlation-Id / opc-request-id:

Here is a x-request-id for such an attempt:

/96CFB9AF7A4D9F49A8C0676F2090BFF4+gN69_JP6l

This post has been answered by Jacob Jewell-Oracle on Jun 21 2024
Jump to Answer
Comments
Post Details
Added on Jun 18 2024
4 comments
236 views