Universal API Implementation Guide
1.1.20 - ci-build
Universal API Implementation Guide - Local Development build (v1.1.20) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions
The linkId "denied-coverage" is required in Patient Foundation enrollments bundle if patient has insurance. Correction is outlined below:
BEFORE:
"linkId": "denied-coverage",
"text": "If insured, has the patient's insurance denied coverage for this medication?",
"type": "choice",
"enableWhen": [
{
"question": "has-insurance",
"operator": "=",
"answerBoolean": true
}
],
"enableBehavior": "all",
"required": true,
"repeats": false,
"answerOption": [
"valueString": "Yes",
"valueString": "No"]
UPDATED to:
"linkId": "denied-coverage",
"text": "If insured, has the patient's insurance denied coverage for this medication?",
"type": "choice",
"enableWhen": [
{
"question": "has-insurance",
"operator": "=",
"answerString": "Yes"
}
],
"enableBehavior": "all",
"required": true,
"repeats": false,
"answerOption": [
"valueString": "Yes",
"valueString": "No"]