diff --git a/client/src/components/c4dic.tsx b/client/src/components/c4dic.tsx index 520b057..0a8e4a3 100644 --- a/client/src/components/c4dic.tsx +++ b/client/src/components/c4dic.tsx @@ -22,6 +22,7 @@ export type CoverageInfo = { status: string, medicaidEligibility: string, referenceYear: string, + entitlementReason: string, colorPalette: { foreground: string, background: string, @@ -65,6 +66,7 @@ export default function InsuranceCard() { status: c.active, medicaidEligibility: c.medicaidEligibility, referenceYear: c.referenceYear, + entitlementReason: c.entitlementReason, colorPalette: { foreground: c.colorPalette.foreground, background: c.colorPalette.background, @@ -170,7 +172,7 @@ export default function InsuranceCard() { {insInfo?.coverages.map(c => { const startDateDiv = (c.startDate !== null && c.startDate !== "") ? ( -
+
Start Date
{c.startDate} @@ -180,7 +182,7 @@ export default function InsuranceCard() { case "Part A": return (
-
+
Coverage
Hospital
{c.coverageClass}
@@ -189,14 +191,14 @@ export default function InsuranceCard() {
Entitlement Reason
- {c.contractId} + {c.entitlementReason}
) case "Part B": return (
-
+
Coverage
Medical
{c.coverageClass}
@@ -205,37 +207,25 @@ export default function InsuranceCard() {
) case "Part C": - const partCTypeDiv = (c.coverageClass != null) ? - ( -
- Type -
- {c.coverageClass} -
- ) : null + return (
-
+
Coverage
- Advantage
{c.coverageClass}
- {partCTypeDiv} + {c.coverageClass}
Plan #
{c.contractId} -
- Organization -
- {c.payer}
) case "Part D": return (
-
+
Coverage
Rx
{c.coverageClass}
diff --git a/client/src/components/patientData.tsx b/client/src/components/patientData.tsx index e290d12..a5f857e 100644 --- a/client/src/components/patientData.tsx +++ b/client/src/components/patientData.tsx @@ -7,14 +7,20 @@ import React, { useState } from 'react'; export default function PatientData() { const [header] = useState('Fetch your Coverage and Medicare Prescription Drug data'); const [settingsState] = useState({ - pkce: true, - version: 'v2', - env: 'sandbox' + useDefaultDataButton: false, }); async function goAuthorize() { - const authUrlResponse = await axios.get(`/api/authorize/authurl`, { params: settingsState }); + const authUrlResponse = await axios.get(`/api/authorize/authurl`); window.location.href = authUrlResponse.data || '/'; } + async function goLoadDefaults() { + const loadDefaultsData = await axios.get(`/api/bluebutton/loadDefaults`); + window.location.href = loadDefaultsData.data || '/'; + } + async function goLoadDefaults2() { + const loadDefaultsData = await axios.get(`/api/bluebutton/loadDefaults2`); + window.location.href = loadDefaultsData.data || '/'; + } /* DEVELOPER NOTES: * Here we are hard coding the users information for the sake of saving time @@ -34,7 +40,21 @@ export default function PatientData() {

{ header }

- +
+ +
+ { + settingsState.useDefaultDataButton ? +
+
+ +
+
+ +
+
: + null + }
); diff --git a/client/src/styles/index.scss b/client/src/styles/index.scss index 2453e24..4c29016 100644 --- a/client/src/styles/index.scss +++ b/client/src/styles/index.scss @@ -205,29 +205,37 @@ input[type=number]::-webkit-input-placeholder { } .bb-c-c4dic-coverage-a { - display: grid; - grid-template-columns: 1fr 1fr 2fr; - padding: 10px; + display: flex; + padding: 8px; + align-items: flex-start; + gap: 24px; + align-self: stretch; } .bb-c-c4dic-coverage-b { - display: grid; - grid-template-columns: 1fr 1fr 2fr; - padding: 10px; + display: flex; + padding: 8px; + align-items: flex-start; + gap: 24px; + align-self: stretch; border-top: 0.5px solid } .bb-c-c4dic-coverage-c { - display: grid; - grid-template-columns: 1fr 3fr; - padding: 10px; + display: flex; + padding: 8px; + align-items: flex-start; + gap: 24px; + align-self: stretch; border-top: 0.5px solid } .bb-c-c4dic-coverage-d { - display: grid; - grid-template-columns: 1fr 1fr 2fr; - padding: 10px; + display: flex; + padding: 8px; + align-items: flex-start; + gap: 24px; + align-self: stretch; border-top: 0.5px solid } diff --git a/client/src/types/settings.ts b/client/src/types/settings.ts index a925883..1f261b3 100644 --- a/client/src/types/settings.ts +++ b/client/src/types/settings.ts @@ -1,5 +1,3 @@ export type SettingsType = { - env: 'sandbox' | 'local' | 'production', - version: 'v1' | 'v2', - pkce: boolean, + useDefaultDataButton: boolean, } \ No newline at end of file diff --git a/server/app.py b/server/app.py index 35f4a79..2ea8237 100644 --- a/server/app.py +++ b/server/app.py @@ -14,8 +14,7 @@ C4DIC_LOGO_EXT = "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Logo-extension" C4DIC_ADDL_CARD_INFO_EXT = "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-AdditionalCardInformation-extension" -CMS_VAR_PTC_CNTRCT_ID_01 = "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_01" -CMS_VAR_PTD_CNTRCT_ID_01 = "https://bluebutton.cms.gov/resources/variables/ptdcntrct01" +CMS_VAR_CREC = "https://bluebutton.cms.gov/resources/variables/crec" CMS_VAR_REF_YR="https://bluebutton.cms.gov/resources/variables/rfrnc_yr" BENE_DENIED_ACCESS = "access_denied" @@ -168,6 +167,29 @@ def get_patient_eob(): else: return {} + +@app.route('/api/bluebutton/loadDefaults', methods=['GET']) +def load_default_data(): + logged_in_user['dicPatientData'] = load_data_file("Dataset 1", "c4dicPatient") + logged_in_user['dicCoverageData'] = load_data_file("Dataset 1", "c4dicCoverage") + logged_in_user['eobData'] = load_data_file("Dataset 1", "eobData") + return get_fe_redirect_url() + + +@app.route('/api/bluebutton/loadDefaults2', methods=['GET']) +def load_default_data2(): + logged_in_user['dicPatientData'] = load_data_file("Dataset 2", "c4dicPatient") + logged_in_user['dicCoverageData'] = load_data_file("Dataset 2", "c4dicCoverage") + logged_in_user['eobData'] = load_data_file("Dataset 2", "eobData") + return get_fe_redirect_url() + + +def load_data_file(dataset_name, resource_file_name): + response_file = open("./default_datasets/{}/{}.json".format(dataset_name, resource_file_name), 'r') + resource = json.load(response_file) + response_file.close() + return resource + @app.route('/api/data/insurance', methods=['GET']) def get_patient_insurance(): """ @@ -178,7 +200,6 @@ def get_patient_insurance(): * Coverage (fetched from the BB2 server and cached in logged_in_user), and * sent back to FE to render a CMS insurance 'card' """ - print_setting() ## C4DIC patient and coverage where to extract PII and coverage plans & eligibilities @@ -265,13 +286,13 @@ def get_patient_insurance(): c_contract_id = "" ## Part A and Part B does not have contract number if c_coverageClass == "Part C": c_contract_id = lookup_1_and_get("$.resource.class[?(@.type.coding[0].code=='plan')]", "value", c) - # c_contract_id = lookup_1_and_get(f"$.resource.extension[?(@.url=='{CMS_VAR_PTC_CNTRCT_ID_01}')]", "valueCoding", c).get('code') if c_coverageClass == "Part D": c_contract_id = lookup_1_and_get("$.resource.class[?(@.type.coding[0].code=='plan')]", "value", c) - # c_contract_id = lookup_1_and_get(f"$.resource.extension[?(@.url=='{CMS_VAR_PTD_CNTRCT_ID_01}')]", "valueCoding", c).get('code') coverage['contractId'] = c_contract_id c_reference_year = lookup_1_and_get(f"$.resource.extension[?(@.url=='{CMS_VAR_REF_YR}')]", "valueDate", c) coverage['referenceYear'] = c_reference_year + c_entitlement_reason = lookup_1_and_get(f"$.resource.extension[?(@.url=='{CMS_VAR_CREC}')]", "valueCoding", c).get('display') + coverage['entitlementReason'] = c_entitlement_reason # color palettes extension c_color_palette_ext = lookup_by_path(f"$.resource.extension[?(@.url=='{C4DIC_COLOR_PALETTE_EXT}')]", c) if c_color_palette_ext[0]: diff --git a/server/default_datasets/Dataset 1/c4dicCoverage.json b/server/default_datasets/Dataset 1/c4dicCoverage.json new file mode 100644 index 0000000..86efe19 --- /dev/null +++ b/server/default_datasets/Dataset 1/c4dicCoverage.json @@ -0,0 +1,1821 @@ +{ + "resourceType": "Bundle", + "id": "d0e5a190-e93a-4d27-b1e7-890561c599f4", + "meta": { + "lastUpdated": "2024-12-04T12:02:49.539+00:00" + }, + "type": "searchset", + "total": 4, + "link": [ + { + "relation": "first", + "url": "http://localhost:8000/v2/fhir/Coverage?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&beneficiary=Patient%2F-88888888888888&_profile=http%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Finsurance-card%2FStructureDefinition%2FC4DIC-Coverage" + }, + { + "relation": "last", + "url": "http://localhost:8000/v2/fhir/Coverage?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&beneficiary=Patient%2F-88888888888888&_profile=http%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Finsurance-card%2FStructureDefinition%2FC4DIC-Coverage" + }, + { + "relation": "self", + "url": "http://localhost:8000/v2/fhir/Coverage/?_count=10&_format=application%2Fjson%2Bfhir&_profile=http%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Finsurance-card%2FStructureDefinition%2FC4DIC-Coverage&beneficiary=Patient%2F-88888888888888&startIndex=0" + } + ], + "entry": [ + { + "resource": { + "resourceType": "Coverage", + "id": "c4dic-part-a--88888888888888", + "meta": { + "lastUpdated": "2021-05-05T05:52:30.869+00:00", + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Coverage|1.1" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Organization|1.1" + ] + }, + "active": true, + "name": "Centers for Medicare and Medicaid Services", + "contact": [ + { + "purpose": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/contactentity-type", + "code": "PAYOR", + "display": "Payor" + } + ] + }, + "telecom": [ + { + "system": "phone", + "value": "1-800-MEDICARE\n(1-800-633-4227)" + }, + { + "system": "phone", + "value": "TTY: 1-877-486-2048" + }, + { + "system": "url", + "value": "www.medicare.gov" + } + ] + } + ] + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ColorPalette-extension", + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ForegroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#F4FEFF" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-BackgroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#092E86" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-HighlightColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#335097" + } + } + ] + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-AdditionalCardInformation-extension", + "valueAnnotation": { + "text": "You may be asked to show this card when you get health care services. Only give your personal Medicare information to health care providers, or people you trust who work with Medicare on your behalf. WARNING: Intentionally misusing this card may be considered fraud and/or other violation of federal law and is punishable by law.\n\nEs posible que le pidan que muestre esta tarjeta cuando reciba servicios de cuidado médico. Solamente dé su información personal de Medicare a los proveedores de salud, sus aseguradores o personas de su confianza que trabajan con Medicare en su nombre. ¡ADVERTENCIA! El mal uso intencional de esta tarjeta puede ser considerado como fraude y/u otra violación de la ley federal y es sancionada por la ley." + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Logo-extension", + "valueString": "https://www.hhs.gov/sites/default/files/logo-white-lg.png" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "code": "10", + "display": "Aged without end-stage renal disease (ESRD)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/orec", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/orec", + "code": "0", + "display": "Old age and survivor’s insurance (OASI)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/crec", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/crec", + "code": "0", + "display": "Old age and survivor’s insurance (OASI)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/esrd_ind", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/esrd_ind", + "code": "0", + "display": "the beneficiary does not have ESRD" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/a_trm_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/a_trm_cd", + "code": "0", + "display": "Not Terminated" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rfrnc_yr", + "valueDate": "2020" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_12", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin01", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin02", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin03", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin04", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin05", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin06", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin07", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin08", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin09", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin10", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin11", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin12", + "code": "C", + "display": "Part A and Part B state buy-in" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MB", + "display": "Member Number" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-mbi", + "value": "1S00ABBAA00", + "assigner": { + "reference": "#provider-org" + } + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "SUBSIDIZ" + } + ] + }, + "subscriber": { + "reference": "Patient/-88888888888888" + }, + "subscriberId": "1S00ABBAA00", + "beneficiary": { + "reference": "Patient/-88888888888888" + }, + "relationship": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/subscriber-relationship", + "code": "self", + "display": "Self" + } + ] + }, + "payor": [ + { + "reference": "#provider-org" + } + ], + "class": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "group", + "display": "Group" + } + ] + }, + "value": "Medicare" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "plan", + "display": "Plan" + } + ] + }, + "value": "Part A" + } + ] + } + }, + { + "resource": { + "resourceType": "Coverage", + "id": "c4dic-part-b--88888888888888", + "meta": { + "lastUpdated": "2021-05-05T05:52:30.869+00:00", + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Coverage|1.1" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Organization|1.1" + ] + }, + "active": true, + "name": "Centers for Medicare and Medicaid Services", + "contact": [ + { + "purpose": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/contactentity-type", + "code": "PAYOR", + "display": "Payor" + } + ] + }, + "telecom": [ + { + "system": "phone", + "value": "1-800-MEDICARE\n(1-800-633-4227)" + }, + { + "system": "phone", + "value": "TTY: 1-877-486-2048" + }, + { + "system": "url", + "value": "www.medicare.gov" + } + ] + } + ] + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ColorPalette-extension", + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ForegroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#F4FEFF" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-BackgroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#092E86" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-HighlightColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#335097" + } + } + ] + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-AdditionalCardInformation-extension", + "valueAnnotation": { + "text": "You may be asked to show this card when you get health care services. Only give your personal Medicare information to health care providers, or people you trust who work with Medicare on your behalf. WARNING: Intentionally misusing this card may be considered fraud and/or other violation of federal law and is punishable by law.\n\nEs posible que le pidan que muestre esta tarjeta cuando reciba servicios de cuidado médico. Solamente dé su información personal de Medicare a los proveedores de salud, sus aseguradores o personas de su confianza que trabajan con Medicare en su nombre. ¡ADVERTENCIA! El mal uso intencional de esta tarjeta puede ser considerado como fraude y/u otra violación de la ley federal y es sancionada por la ley." + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Logo-extension", + "valueString": "https://www.hhs.gov/sites/default/files/logo-white-lg.png" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "code": "10", + "display": "Aged without end-stage renal disease (ESRD)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/b_trm_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/b_trm_cd", + "code": "0", + "display": "Not Terminated" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rfrnc_yr", + "valueDate": "2020" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/crec", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/crec", + "code": "0", + "display": "Old age and survivor’s insurance (OASI)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_12", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin01", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin02", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin03", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin04", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin05", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin06", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin07", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin08", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin09", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin10", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin11", + "code": "C", + "display": "Part A and Part B state buy-in" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin12", + "code": "C", + "display": "Part A and Part B state buy-in" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MB", + "display": "Member Number" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-mbi", + "value": "1S00ABBAA00", + "assigner": { + "reference": "#provider-org" + } + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "SUBSIDIZ" + } + ] + }, + "subscriber": { + "reference": "Patient/-88888888888888" + }, + "subscriberId": "1S00ABBAA00", + "beneficiary": { + "reference": "Patient/-88888888888888" + }, + "relationship": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/subscriber-relationship", + "code": "self", + "display": "Self" + } + ] + }, + "payor": [ + { + "reference": "#provider-org" + } + ], + "class": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "group", + "display": "Group" + } + ] + }, + "value": "Medicare" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "plan", + "display": "Plan" + } + ] + }, + "value": "Part B" + } + ] + } + }, + { + "resource": { + "resourceType": "Coverage", + "id": "c4dic-part-c--88888888888888", + "meta": { + "lastUpdated": "2021-05-05T05:52:30.869+00:00", + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Coverage|1.1" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Organization|1.1" + ] + }, + "active": true, + "name": "Centers for Medicare and Medicaid Services", + "contact": [ + { + "purpose": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/contactentity-type", + "code": "PAYOR", + "display": "Payor" + } + ] + }, + "telecom": [ + { + "system": "phone", + "value": "1-800-MEDICARE\n(1-800-633-4227)" + }, + { + "system": "phone", + "value": "TTY: 1-877-486-2048" + }, + { + "system": "url", + "value": "www.medicare.gov" + } + ] + } + ] + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ColorPalette-extension", + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ForegroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#F4FEFF" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-BackgroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#092E86" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-HighlightColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#335097" + } + } + ] + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-AdditionalCardInformation-extension", + "valueAnnotation": { + "text": "You may be asked to show this card when you get health care services. Only give your personal Medicare information to health care providers, or people you trust who work with Medicare on your behalf. WARNING: Intentionally misusing this card may be considered fraud and/or other violation of federal law and is punishable by law.\n\nEs posible que le pidan que muestre esta tarjeta cuando reciba servicios de cuidado médico. Solamente dé su información personal de Medicare a los proveedores de salud, sus aseguradores o personas de su confianza que trabajan con Medicare en su nombre. ¡ADVERTENCIA! El mal uso intencional de esta tarjeta puede ser considerado como fraude y/u otra violación de la ley federal y es sancionada por la ley." + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Logo-extension", + "valueString": "https://www.hhs.gov/sites/default/files/logo-white-lg.png" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_01", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_02", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_03", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_04", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_05", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_06", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_07", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_08", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_09", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_10", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_11", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_cntrct_id_12", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_01", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_02", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_03", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_04", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_05", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_06", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_07", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_08", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_09", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_10", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_11", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_pbp_id_12", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_01", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_02", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_03", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_04", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_05", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_06", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_07", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_08", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_09", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_10", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_11", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptc_plan_type_cd_12", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_01", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_02", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_03", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_04", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_05", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_06", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_07", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_08", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_09", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_10", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_11", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/hmo_ind_12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/hmo_ind_12", + "code": "D" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rfrnc_yr", + "valueDate": "2020" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_12", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/crec", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/crec", + "code": "0", + "display": "Old age and survivor’s insurance (OASI)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MB", + "display": "Member Number" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-mbi", + "value": "1S00ABBAA00", + "assigner": { + "reference": "#provider-org" + } + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "SUBSIDIZ" + } + ] + }, + "subscriber": { + "reference": "Patient/-88888888888888" + }, + "subscriberId": "1S00ABBAA00", + "beneficiary": { + "reference": "Patient/-88888888888888" + }, + "relationship": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/subscriber-relationship", + "code": "self", + "display": "Self" + } + ] + }, + "payor": [ + { + "reference": "#provider-org" + } + ], + "class": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "plan", + "display": "Plan" + } + ] + }, + "value": "C-C" + } + ] + } + }, + { + "resource": { + "resourceType": "Coverage", + "id": "c4dic-part-d--88888888888888", + "meta": { + "lastUpdated": "2021-05-05T05:52:30.869+00:00", + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Coverage|1.1" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Organization|1.1" + ] + }, + "active": true, + "name": "Centers for Medicare and Medicaid Services", + "contact": [ + { + "purpose": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/contactentity-type", + "code": "PAYOR", + "display": "Payor" + } + ] + }, + "telecom": [ + { + "system": "phone", + "value": "1-800-MEDICARE\n(1-800-633-4227)" + }, + { + "system": "phone", + "value": "TTY: 1-877-486-2048" + }, + { + "system": "url", + "value": "www.medicare.gov" + } + ] + } + ] + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ColorPalette-extension", + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ForegroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#F4FEFF" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-BackgroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#092E86" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-HighlightColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#335097" + } + } + ] + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-AdditionalCardInformation-extension", + "valueAnnotation": { + "text": "You may be asked to show this card when you get health care services. Only give your personal Medicare information to health care providers, or people you trust who work with Medicare on your behalf. WARNING: Intentionally misusing this card may be considered fraud and/or other violation of federal law and is punishable by law.\n\nEs posible que le pidan que muestre esta tarjeta cuando reciba servicios de cuidado médico. Solamente dé su información personal de Medicare a los proveedores de salud, sus aseguradores o personas de su confianza que trabajan con Medicare en su nombre. ¡ADVERTENCIA! El mal uso intencional de esta tarjeta puede ser considerado como fraude y/u otra violación de la ley federal y es sancionada por la ley." + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Logo-extension", + "valueString": "https://www.hhs.gov/sites/default/files/logo-white-lg.png" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "code": "10", + "display": "Aged without end-stage renal disease (ESRD)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct01", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct02", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct03", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct04", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct05", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct06", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct07", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct08", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct09", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct10", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct11", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct12", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct01/2020-1", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct01", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct02/2020-2", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct02", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct03/2020-3", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct03", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct04/2020-4", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct04", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct05/2020-5", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct05", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct06/2020-6", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct06", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct07/2020-7", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct07", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct08/2020-8", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct08", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct09/2020-9", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct09", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct10/2020-10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct10", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct11/2020-11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct11", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdcntrct12/2020-12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdcntrct12", + "code": "Z0000" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid01", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid02", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid03", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid04", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid05", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid06", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid07", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid08", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid09", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid10", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid11", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ptdpbpid12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ptdpbpid12", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid01", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid02", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid03", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid04", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid05", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid06", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid07", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid08", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid09", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid10", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid11", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/sgmtid12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/sgmtid12", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr01", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr02", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr03", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr04", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr05", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr06", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr07", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr08", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr09", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr10", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr11", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/cstshr12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/cstshr12", + "code": "BB" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind01", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind02", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind03", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind04", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind04", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind05", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind05", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind06", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind06", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind07", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind07", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind08", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind08", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind09", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind09", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind10", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind10", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind11", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind11", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rdsind12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rdsind12", + "code": "C" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rfrnc_yr", + "valueDate": "2020" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_12", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_12", + "code": "AA" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/crec", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/crec", + "code": "0", + "display": "Old age and survivor’s insurance (OASI)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MB", + "display": "Member Number" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-mbi", + "value": "1S00ABBAA00", + "assigner": { + "reference": "#provider-org" + } + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "SUBSIDIZ" + } + ] + }, + "subscriber": { + "reference": "Patient/-88888888888888" + }, + "subscriberId": "1S00ABBAA00", + "beneficiary": { + "reference": "Patient/-88888888888888" + }, + "relationship": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/subscriber-relationship", + "code": "self", + "display": "Self" + } + ] + }, + "payor": [ + { + "reference": "#provider-org" + } + ], + "class": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "plan", + "display": "Plan" + } + ] + }, + "value": "Z0000-C" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/server/default_datasets/Dataset 1/c4dicPatient.json b/server/default_datasets/Dataset 1/c4dicPatient.json new file mode 100644 index 0000000..c15908e --- /dev/null +++ b/server/default_datasets/Dataset 1/c4dicPatient.json @@ -0,0 +1,149 @@ +{ + "resourceType": "Bundle", + "id": "51dfb956-aef7-4b2c-bc54-7f63286433b5", + "meta": { + "lastUpdated": "2024-11-27T07:02:46.387-05:00" + }, + "type": "searchset", + "total": 1, + "link": [ + { + "relation": "first", + "url": "https://test.bluebutton.cms.gov/v2/fhir/Patient?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&_id=-10000010254647" + }, + { + "relation": "last", + "url": "https://test.bluebutton.cms.gov/v2/fhir/Patient?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&_id=-10000010254647" + }, + { + "relation": "self", + "url": "https://test.bluebutton.cms.gov/v2/fhir/Patient/?_count=10&_format=application%2Fjson%2Bfhir&_id=-10000010254647&startIndex=0" + } + ], + "entry": [ + { + "resource": { + "resourceType": "Patient", + "id": "-10000010254647", + "meta": { + "lastUpdated": "2023-06-14T14:17:07.293-04:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-Patient" + ] + }, + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/race", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/race", + "code": "2", + "display": "Black" + } + }, + { + "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", + "extension": [ + { + "url": "ombCategory", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "code": "UNK", + "display": "Unknown" + } + }, + { + "url": "text", + "valueString": "Unknown" + } + ] + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rfrnc_yr", + "valueDate": "2025" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_01", + "code": "02", + "display": "QMB and full Medicaid coverage, including prescription drugs" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_02", + "code": "02", + "display": "QMB and full Medicaid coverage, including prescription drugs" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_03", + "code": "02", + "display": "QMB and full Medicaid coverage, including prescription drugs" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MB", + "display": "Member Number" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/bene_id", + "value": "-10000010254647" + }, + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/codesystem/identifier-currency", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/codesystem/identifier-currency", + "code": "current", + "display": "Current" + } + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MC", + "display": "Patient's Medicare number" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-mbi", + "value": "1S00EU7JH47" + } + ], + "name": [ + { + "use": "usual", + "family": "Ratke343", + "given": [ + "Johnie961", + "C" + ] + } + ], + "gender": "male", + "birthDate": "1990-08-14", + "deceasedBoolean": false, + "address": [ + { + "state": "01", + "postalCode": "35756" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/server/default_datasets/Dataset 1/eobData.json b/server/default_datasets/Dataset 1/eobData.json new file mode 100644 index 0000000..57e3d66 --- /dev/null +++ b/server/default_datasets/Dataset 1/eobData.json @@ -0,0 +1,27133 @@ +{ + "resourceType": "Bundle", + "id": "20f505fd-47c1-48af-852e-8afee38be77a", + "meta": { + "lastUpdated": "2024-12-11T12:03:39.723+00:00" + }, + "type": "searchset", + "total": 51, + "link": [ + { + "relation": "first", + "url": "https://test.bluebutton.cms.gov/v2/fhir/ExplanationOfBenefit?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&patient=-10000010254647" + }, + { + "relation": "next", + "url": "https://test.bluebutton.cms.gov/v2/fhir/ExplanationOfBenefit?_format=application%2Fjson%2Bfhir&startIndex=10&_count=10&patient=-10000010254647" + }, + { + "relation": "last", + "url": "https://test.bluebutton.cms.gov/v2/fhir/ExplanationOfBenefit?_format=application%2Fjson%2Bfhir&startIndex=50&_count=10&patient=-10000010254647" + }, + { + "relation": "self", + "url": "https://test.bluebutton.cms.gov/v2/fhir/ExplanationOfBenefit/?_count=10&_format=application%2Fjson%2Bfhir&patient=-10000010254647&startIndex=0" + } + ], + "entry": [ + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "outpatient--10000930038021", + "meta": { + "lastUpdated": "2023-06-14T16:32:51.430+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Outpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-Organization" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PRN" + } + ] + }, + "value": "014018" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1225301823" + } + ], + "active": true, + "name": "BEHAVIORAL HEALTHCARE CENTER AT HUNTSVILLE, LLC" + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "W", + "display": "Part B institutional claim record (outpatient [HOP], HHA)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/fi_doc_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/fi_doc_clm_cntl_num", + "value": "-426561283" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd", + "code": "3" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038021" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178419" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "40", + "display": "Hospital Outpatient claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "OUTPATIENT" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "subType": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBInstitutionalClaimSubType", + "code": "outpatient" + } + ], + "text": "Outpatient" + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/claim_query_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/claim_query_cd", + "code": "3", + "display": "Final bill" + } + } + ], + "start": "2016-09-13", + "end": "2016-09-13" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "reference": "#provider-org" + }, + "facility": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd", + "code": "1", + "display": "Hospital" + } + } + ] + }, + "outcome": "complete", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "attending", + "display": "Attending" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "attending", + "display": "Attending" + } + ] + } + }, + { + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "operating", + "display": "Operating" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "operating", + "display": "Operating" + } + ] + } + }, + { + "sequence": 5, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + } + }, + { + "sequence": 6, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2016-09-16" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw", + "display": "Claim MCO Paid Switch" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw", + "code": "0", + "display": "No managed care organization (MCO) payment" + } + ] + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "typeofbill", + "display": "Type of Bill" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/clm_freq_cd", + "code": "1", + "display": "Admit thru discharge claim" + } + ] + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "discharge-status", + "display": "Discharge Status" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd", + "code": "1" + } + ] + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd", + "display": "NCH Primary Payer Code (if not Medicare)" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd" + } + ] + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "J329", + "display": "\"CHRONIC SINUSITIS, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "J329", + "display": "\"CHRONIC SINUSITIS, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "B9789", + "display": "OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "B9789", + "display": "OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M5450" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M5450" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Y93", + "display": "ACTIVITY CODES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Y93", + "display": "ACTIVITY CODES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "externalcauseofinjury", + "display": "External Cause of Injury" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/unknown-icd-version/ " + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "externalcauseofinjury", + "display": "External Cause of Injury" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/rev_cntr_unit_cnt", + "valueQuantity": { + "value": 1 + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 5, + 6 + ], + "revenue": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd", + "code": "4" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/rev_cntr", + "code": "0001", + "display": "Total charge" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99241" + } + ] + }, + "servicedDate": "2016-09-13", + "locationAddress": { + "state": "01" + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt", + "display": "Revenue Center Rate Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt", + "display": "Revenue Center Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "noncovered", + "display": "Noncovered" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt", + "display": "Revenue Center Non-Covered Charge Amount" + } + ] + }, + "amount": { + "value": 60.7, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt", + "display": "Revenue Center Blood Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt", + "display": "Revenue Center Cash Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c", + "display": "Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt", + "display": "Revenue Center Reduced Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt", + "display": "Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt", + "display": "Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 60.7, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt", + "display": "Revenue Center Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidbypatient", + "display": "Paid by patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt", + "display": "Revenue Center Patient Responsibility Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt", + "display": "Revenue Center (Medicare) Payment Amount" + } + ] + }, + "amount": { + "value": 60.7, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 60.7, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 60.7, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt", + "display": "Professional Component Charge Amount" + } + ] + }, + "usedMoney": { + "value": 4.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt", + "display": "NCH Beneficiary Part B Deductible Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt", + "display": "NCH Beneficiary Part B Coinsurance Amount" + } + ] + }, + "usedMoney": { + "value": 10.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt", + "display": "Claim Outpatient Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 60.7, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt", + "display": "Claim Outpatient Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am", + "display": "NCH Beneficiary Blood Deductible Liability Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/prpayamt", + "display": "NCH Primary Payer (if not Medicare) Claim Paid Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "outpatient--10000930038022", + "meta": { + "lastUpdated": "2023-06-14T16:32:51.430+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Outpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-Organization" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PRN" + } + ] + }, + "value": "014018" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1225301823" + } + ], + "active": true, + "name": "BEHAVIORAL HEALTHCARE CENTER AT HUNTSVILLE, LLC" + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "W", + "display": "Part B institutional claim record (outpatient [HOP], HHA)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/fi_doc_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/fi_doc_clm_cntl_num", + "value": "-426561284" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd", + "code": "3" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038022" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178420" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "40", + "display": "Hospital Outpatient claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "OUTPATIENT" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "subType": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBInstitutionalClaimSubType", + "code": "outpatient" + } + ], + "text": "Outpatient" + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/claim_query_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/claim_query_cd", + "code": "3", + "display": "Final bill" + } + } + ], + "start": "2020-12-22", + "end": "2020-12-22" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "reference": "#provider-org" + }, + "facility": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd", + "code": "1", + "display": "Hospital" + } + } + ] + }, + "outcome": "complete", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "attending", + "display": "Attending" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "attending", + "display": "Attending" + } + ] + } + }, + { + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "operating", + "display": "Operating" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "operating", + "display": "Operating" + } + ] + } + }, + { + "sequence": 5, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + } + }, + { + "sequence": 6, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2020-12-25" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw", + "display": "Claim MCO Paid Switch" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw", + "code": "0", + "display": "No managed care organization (MCO) payment" + } + ] + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "typeofbill", + "display": "Type of Bill" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/clm_freq_cd", + "code": "1", + "display": "Admit thru discharge claim" + } + ] + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "discharge-status", + "display": "Discharge Status" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd", + "code": "1" + } + ] + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd", + "display": "NCH Primary Payer Code (if not Medicare)" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd" + } + ] + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z604", + "display": "SOCIAL EXCLUSION AND REJECTION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z604", + "display": "SOCIAL EXCLUSION AND REJECTION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "B9789", + "display": "OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "B9789", + "display": "OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "T7491X" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "T7491X" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M7918" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M7918" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Y93", + "display": "ACTIVITY CODES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Y93", + "display": "ACTIVITY CODES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "externalcauseofinjury", + "display": "External Cause of Injury" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/unknown-icd-version/ " + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "externalcauseofinjury", + "display": "External Cause of Injury" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/rev_cntr_unit_cnt", + "valueQuantity": { + "value": 1 + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 5, + 6 + ], + "revenue": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd", + "code": "4" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/rev_cntr", + "code": "0001", + "display": "Total charge" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99241" + } + ] + }, + "servicedDate": "2020-12-22", + "locationAddress": { + "state": "01" + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt", + "display": "Revenue Center Rate Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt", + "display": "Revenue Center Total Charge Amount" + } + ] + }, + "amount": { + "value": 3.34, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "noncovered", + "display": "Noncovered" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt", + "display": "Revenue Center Non-Covered Charge Amount" + } + ] + }, + "amount": { + "value": 233.83, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt", + "display": "Revenue Center Blood Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt", + "display": "Revenue Center Cash Deductible Amount" + } + ] + }, + "amount": { + "value": 233.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c", + "display": "Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.83, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt", + "display": "Revenue Center Reduced Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.83, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt", + "display": "Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt", + "display": "Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 237.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt", + "display": "Revenue Center Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidbypatient", + "display": "Paid by patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt", + "display": "Revenue Center Patient Responsibility Payment Amount" + } + ] + }, + "amount": { + "value": 233.83, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt", + "display": "Revenue Center (Medicare) Payment Amount" + } + ] + }, + "amount": { + "value": 237.17, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 237.17, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 237.17, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt", + "display": "Professional Component Charge Amount" + } + ] + }, + "usedMoney": { + "value": 4.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt", + "display": "NCH Beneficiary Part B Deductible Amount" + } + ] + }, + "usedMoney": { + "value": 233.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt", + "display": "NCH Beneficiary Part B Coinsurance Amount" + } + ] + }, + "usedMoney": { + "value": 10.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt", + "display": "Claim Outpatient Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 237.17, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt", + "display": "Claim Outpatient Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am", + "display": "NCH Beneficiary Blood Deductible Liability Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/prpayamt", + "display": "NCH Primary Payer (if not Medicare) Claim Paid Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "outpatient--10000930038023", + "meta": { + "lastUpdated": "2023-06-14T16:32:51.430+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Outpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-Organization" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PRN" + } + ] + }, + "value": "014018" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1225301823" + } + ], + "active": true, + "name": "BEHAVIORAL HEALTHCARE CENTER AT HUNTSVILLE, LLC" + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "W", + "display": "Part B institutional claim record (outpatient [HOP], HHA)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/fi_doc_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/fi_doc_clm_cntl_num", + "value": "-426561285" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd", + "code": "3" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038023" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178421" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "40", + "display": "Hospital Outpatient claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "OUTPATIENT" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "subType": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBInstitutionalClaimSubType", + "code": "outpatient" + } + ], + "text": "Outpatient" + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/claim_query_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/claim_query_cd", + "code": "3", + "display": "Final bill" + } + } + ], + "start": "2021-01-12", + "end": "2021-01-12" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "reference": "#provider-org" + }, + "facility": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd", + "code": "1", + "display": "Hospital" + } + } + ] + }, + "outcome": "complete", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "attending", + "display": "Attending" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "attending", + "display": "Attending" + } + ] + } + }, + { + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "operating", + "display": "Operating" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "operating", + "display": "Operating" + } + ] + } + }, + { + "sequence": 5, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + } + }, + { + "sequence": 6, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2021-01-15" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw", + "display": "Claim MCO Paid Switch" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw", + "code": "0", + "display": "No managed care organization (MCO) payment" + } + ] + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "typeofbill", + "display": "Type of Bill" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/clm_freq_cd", + "code": "1", + "display": "Admit thru discharge claim" + } + ] + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "discharge-status", + "display": "Discharge Status" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd", + "code": "1" + } + ] + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd", + "display": "NCH Primary Payer Code (if not Medicare)" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd" + } + ] + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "T7432X" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "T7432X" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "B9789", + "display": "OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "B9789", + "display": "OTH VIRAL AGENTS AS THE CAUSE OF DISEASES CLASSD ELSWHR" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Y0704", + "display": "\"FEMALE PARTNER, PERPETRATOR OF MALTREATMENT AND NEGLECT\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Y0704", + "display": "\"FEMALE PARTNER, PERPETRATOR OF MALTREATMENT AND NEGLECT\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M5450" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M5450" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Y93", + "display": "ACTIVITY CODES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Y93", + "display": "ACTIVITY CODES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "externalcauseofinjury", + "display": "External Cause of Injury" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/unknown-icd-version/ " + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "externalcauseofinjury", + "display": "External Cause of Injury" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/rev_cntr_unit_cnt", + "valueQuantity": { + "value": 1 + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 5, + 6 + ], + "revenue": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd", + "code": "4" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/rev_cntr", + "code": "0001", + "display": "Total charge" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99241" + } + ] + }, + "servicedDate": "2021-01-12", + "locationAddress": { + "state": "01" + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt", + "display": "Revenue Center Rate Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt", + "display": "Revenue Center Total Charge Amount" + } + ] + }, + "amount": { + "value": 189.74, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "noncovered", + "display": "Noncovered" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt", + "display": "Revenue Center Non-Covered Charge Amount" + } + ] + }, + "amount": { + "value": 47.43, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt", + "display": "Revenue Center Blood Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt", + "display": "Revenue Center Cash Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c", + "display": "Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount" + } + ] + }, + "amount": { + "value": 47.43, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt", + "display": "Revenue Center Reduced Coinsurance Amount" + } + ] + }, + "amount": { + "value": 47.43, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt", + "display": "Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt", + "display": "Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 237.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt", + "display": "Revenue Center Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidbypatient", + "display": "Paid by patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt", + "display": "Revenue Center Patient Responsibility Payment Amount" + } + ] + }, + "amount": { + "value": 47.43, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt", + "display": "Revenue Center (Medicare) Payment Amount" + } + ] + }, + "amount": { + "value": 237.17, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 237.17, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 237.17, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt", + "display": "Professional Component Charge Amount" + } + ] + }, + "usedMoney": { + "value": 4.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt", + "display": "NCH Beneficiary Part B Deductible Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt", + "display": "NCH Beneficiary Part B Coinsurance Amount" + } + ] + }, + "usedMoney": { + "value": 20.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt", + "display": "Claim Outpatient Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 237.17, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt", + "display": "Claim Outpatient Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am", + "display": "NCH Beneficiary Blood Deductible Liability Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/prpayamt", + "display": "NCH Primary Payer (if not Medicare) Claim Paid Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "outpatient--10000930038024", + "meta": { + "lastUpdated": "2024-04-17T12:02:45.138+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Outpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-Organization" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "PRN" + } + ] + }, + "value": "014018" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1225301823" + } + ], + "active": true, + "name": "BEHAVIORAL HEALTHCARE CENTER AT HUNTSVILLE, LLC" + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "W", + "display": "Part B institutional claim record (outpatient [HOP], HHA)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/fi_doc_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/fi_doc_clm_cntl_num", + "value": "-426561286" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_mdcr_non_pmt_rsn_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_srvc_clsfctn_type_cd", + "code": "3" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038024" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178422" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "40", + "display": "Hospital Outpatient claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "OUTPATIENT" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "subType": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBInstitutionalClaimSubType", + "code": "outpatient" + } + ], + "text": "Outpatient" + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/claim_query_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/claim_query_cd", + "code": "3", + "display": "Final bill" + } + } + ], + "start": "2024-03-30", + "end": "2024-03-30" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "reference": "#provider-org" + }, + "facility": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/clm_fac_type_cd", + "code": "1", + "display": "Hospital" + } + } + ] + }, + "outcome": "complete", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "attending", + "display": "Attending" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "attending", + "display": "Attending" + } + ] + } + }, + { + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "operating", + "display": "Operating" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "operating", + "display": "Operating" + } + ] + } + }, + { + "sequence": 5, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "UPIN", + "display": "Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + } + }, + { + "sequence": 6, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999987891" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2024-04-05" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw", + "display": "Claim MCO Paid Switch" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/clm_mco_pd_sw", + "code": "0", + "display": "No managed care organization (MCO) payment" + } + ] + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "typeofbill", + "display": "Type of Bill" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/clm_freq_cd", + "code": "1", + "display": "Admit thru discharge claim" + } + ] + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "discharge-status", + "display": "Discharge Status" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/ptnt_dschrg_stus_cd", + "code": "1" + } + ] + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd", + "display": "NCH Primary Payer Code (if not Medicare)" + } + ] + }, + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_prmry_pyr_cd" + } + ] + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "B953", + "display": "STREPTOCOCCUS PNEUMONIAE CAUSING DISEASES CLASSD ELSWHR" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "B953", + "display": "STREPTOCOCCUS PNEUMONIAE CAUSING DISEASES CLASSD ELSWHR" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "J020", + "display": "STREPTOCOCCAL PHARYNGITIS" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "J020", + "display": "STREPTOCOCCAL PHARYNGITIS" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Y0703", + "display": "\"MALE PARTNER, PERPETRATOR OF MALTREATMENT AND NEGLECT\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Y0703", + "display": "\"MALE PARTNER, PERPETRATOR OF MALTREATMENT AND NEGLECT\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M5450" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M5450" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Y92", + "display": "PLACE OF OCCURRENCE OF THE EXTERNAL CAUSE" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Y92", + "display": "PLACE OF OCCURRENCE OF THE EXTERNAL CAUSE" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "externalcauseofinjury", + "display": "External Cause of Injury" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "X58", + "display": "EXPOSURE TO OTHER SPECIFIED FACTORS" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "X58", + "display": "EXPOSURE TO OTHER SPECIFIED FACTORS" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "externalcauseofinjury", + "display": "External Cause of Injury" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/unknown-icd-version/ " + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "externalcauseofinjury", + "display": "External Cause of Injury" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/rev_cntr_unit_cnt", + "valueQuantity": { + "value": 1 + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 5, + 6 + ], + "revenue": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/rev_cntr_stus_ind_cd", + "code": "4" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/rev_cntr", + "code": "0001", + "display": "Total charge" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99241" + } + ] + }, + "servicedDate": "2024-03-30", + "locationAddress": { + "state": "01" + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_rate_amt", + "display": "Revenue Center Rate Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_tot_chrg_amt", + "display": "Revenue Center Total Charge Amount" + } + ] + }, + "amount": { + "value": 48.56, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "noncovered", + "display": "Noncovered" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_ncvrd_chrg_amt", + "display": "Revenue Center Non-Covered Charge Amount" + } + ] + }, + "amount": { + "value": 12.14, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_blood_ddctbl_amt", + "display": "Revenue Center Blood Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_cash_ddctbl_amt", + "display": "Revenue Center Cash Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_coinsrnc_wge_adjstd_c", + "display": "Revenue Center Coinsurance/Wage Adjusted Coinsurance Amount" + } + ] + }, + "amount": { + "value": 12.14, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_rdcd_coinsrnc_amt", + "display": "Revenue Center Reduced Coinsurance Amount" + } + ] + }, + "amount": { + "value": 12.14, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_1st_msp_pd_amt", + "display": "Revenue Center 1st Medicare Secondary Payer (MSP) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_2nd_msp_pd_amt", + "display": "Revenue Center 2nd Medicare Secondary Payer (MSP) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 60.7, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_bene_pmt_amt", + "display": "Revenue Center Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidbypatient", + "display": "Paid by patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_ptnt_rspnsblty_pmt", + "display": "Revenue Center Patient Responsibility Payment Amount" + } + ] + }, + "amount": { + "value": 12.14, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_pmt_amt_amt", + "display": "Revenue Center (Medicare) Payment Amount" + } + ] + }, + "amount": { + "value": 60.7, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 60.7, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 60.7, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_profnl_cmpnt_chrg_amt", + "display": "Professional Component Charge Amount" + } + ] + }, + "usedMoney": { + "value": 4.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_ddctbl_amt", + "display": "NCH Beneficiary Part B Deductible Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_ptb_coinsrnc_amt", + "display": "NCH Beneficiary Part B Coinsurance Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/clm_op_prvdr_pmt_amt", + "display": "Claim Outpatient Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 60.7, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/clm_op_bene_pmt_amt", + "display": "Claim Outpatient Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_bene_blood_ddctbl_lblty_am", + "display": "NCH Beneficiary Blood Deductible Liability Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/prpayamt", + "display": "NCH Primary Payer (if not Medicare) Claim Paid Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "carrier--10000930038026", + "meta": { + "lastUpdated": "2023-06-14T16:31:42.360+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-7", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-8", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-9", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-10", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-11", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-12", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "O", + "display": "Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00510" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700301260" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038026" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178424" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "71", + "display": "Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "CARRIER" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "professional", + "display": "Professional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "identifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_blg_npi_num", + "value": "1407891336" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "3", + "display": "Assignment accepted/non-participating" + } + } + ], + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1407891336" + }, + "display": "CENTRAL NORTH ALABAMA HEALTH SERVICES, INC." + }, + "role": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "code": "primary", + "display": "Primary provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2016-03-04" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + }, + { + "sequence": 8, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-7" + } + }, + { + "sequence": 9, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-8" + } + }, + { + "sequence": 10, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-9" + } + }, + { + "sequence": 11, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-10" + } + }, + { + "sequence": 12, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-11" + } + }, + { + "sequence": 13, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-12" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M5450" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M5450" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 91.04, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 91.04, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 91.04, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99495" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 250.29, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 250.29, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 250.29, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 312.86, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 312.86, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96156" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 367.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 367.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 367.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96127" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 7, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 8 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 8, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 9 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99401" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 9, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 10 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 10, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 11 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99408" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 11, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 12 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99408" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 40 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 12, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 13 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2016-03-01", + "end": "2016-03-01" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 817.41, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 817.41, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 1021.76, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 817.41, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "carrier--10000930038027", + "meta": { + "lastUpdated": "2023-06-14T16:31:42.360+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-7", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-8", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-9", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-10", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-11", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-12", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "O", + "display": "Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00510" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700301261" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038027" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178425" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "71", + "display": "Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "CARRIER" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "professional", + "display": "Professional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "identifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_blg_npi_num", + "value": "1407891336" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "7", + "display": "Participating provider not accepting assignment" + } + } + ], + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1407891336" + }, + "display": "CENTRAL NORTH ALABAMA HEALTH SERVICES, INC." + }, + "role": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "code": "primary", + "display": "Primary provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2017-03-10" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + }, + { + "sequence": 8, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-7" + } + }, + { + "sequence": 9, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-8" + } + }, + { + "sequence": 10, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-9" + } + }, + { + "sequence": 11, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-10" + } + }, + { + "sequence": 12, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-11" + } + }, + { + "sequence": 13, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-12" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M7918" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M7918" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96156" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99401" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 7, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 8 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 8, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 9 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 9, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 10 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 10, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 11 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99408" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 11, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 12 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99408" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 12, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 13 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2017-03-07", + "end": "2017-03-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 11 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 708.9, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "carrier--10000930038028", + "meta": { + "lastUpdated": "2023-06-14T16:31:42.360+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-7", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-8", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "O", + "display": "Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00510" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700301262" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038028" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178426" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "71", + "display": "Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "CARRIER" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "professional", + "display": "Professional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "start": "2018-03-13", + "end": "2018-03-13" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "identifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_blg_npi_num", + "value": "1407891336" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "3", + "display": "Assignment accepted/non-participating" + } + } + ], + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1407891336" + }, + "display": "CENTRAL NORTH ALABAMA HEALTH SERVICES, INC." + }, + "role": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "code": "primary", + "display": "Primary provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2018-03-16" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + }, + { + "sequence": 8, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-7" + } + }, + { + "sequence": 9, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-8" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "T7422X" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "T7422X" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M7918" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M7918" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-03-13", + "end": "2018-03-13" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 7 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-03-13", + "end": "2018-03-13" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 7 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99495" + } + ] + }, + "servicedPeriod": { + "start": "2018-03-13", + "end": "2018-03-13" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 7 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 336.25, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 336.25, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-03-13", + "end": "2018-03-13" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 7 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 106.99, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 106.99, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96156" + } + ] + }, + "servicedPeriod": { + "start": "2018-03-13", + "end": "2018-03-13" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 7 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99408" + } + ] + }, + "servicedPeriod": { + "start": "2018-03-13", + "end": "2018-03-13" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 7 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 7, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 8 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0442" + } + ] + }, + "servicedPeriod": { + "start": "2018-03-13", + "end": "2018-03-13" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 7 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 8, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 9 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-03-13", + "end": "2018-03-13" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 7 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 1152.14, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "carrier--10000930038029", + "meta": { + "lastUpdated": "2023-06-14T16:31:42.360+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "O", + "display": "Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00510" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700301263" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038029" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178427" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "71", + "display": "Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "CARRIER" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "professional", + "display": "Professional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "start": "2019-03-19", + "end": "2019-03-19" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "identifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_blg_npi_num", + "value": "1407891336" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "5", + "display": "Assignment accepted but all or some covered and allowed expenses applied to deductible Non-participating." + } + } + ], + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1407891336" + }, + "display": "CENTRAL NORTH ALABAMA HEALTH SERVICES, INC." + }, + "role": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "code": "primary", + "display": "Primary provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2019-03-22" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "T7432X" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "T7432X" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "T7421X" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "T7421X" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M7918" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M7918" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 51 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-03-19", + "end": "2019-03-19" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 91.04, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 91.04, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 91.04, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 51 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-03-19", + "end": "2019-03-19" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 51 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96156" + } + ] + }, + "servicedPeriod": { + "start": "2019-03-19", + "end": "2019-03-19" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 367.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 367.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 367.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 51 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-03-19", + "end": "2019-03-19" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 51 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96127" + } + ] + }, + "servicedPeriod": { + "start": "2019-03-19", + "end": "2019-03-19" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 51 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-03-19", + "end": "2019-03-19" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 567.12, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 567.12, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 708.9, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 567.12, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "carrier--10000930038033", + "meta": { + "lastUpdated": "2023-06-14T16:31:42.360+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "O", + "display": "Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00510" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700301264" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038033" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178431" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "71", + "display": "Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "CARRIER" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "professional", + "display": "Professional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "start": "2020-03-24", + "end": "2020-03-24" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "identifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_blg_npi_num", + "value": "1407891336" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "7", + "display": "Participating provider not accepting assignment" + } + } + ], + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1407891336" + }, + "display": "CENTRAL NORTH ALABAMA HEALTH SERVICES, INC." + }, + "role": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "code": "primary", + "display": "Primary provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2020-03-27" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "T7432X" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "T7432X" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Y079", + "display": "UNSPECIFIED PERPETRATOR OF MALTREATMENT AND NEGLECT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Y079", + "display": "UNSPECIFIED PERPETRATOR OF MALTREATMENT AND NEGLECT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M5450" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M5450" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2020-03-24", + "end": "2020-03-24" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2020-03-24", + "end": "2020-03-24" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96156" + } + ] + }, + "servicedPeriod": { + "start": "2020-03-24", + "end": "2020-03-24" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2020-03-24", + "end": "2020-03-24" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2020-03-24", + "end": "2020-03-24" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2020-03-24", + "end": "2020-03-24" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 5 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 708.9, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "carrier--10000930038035", + "meta": { + "lastUpdated": "2023-06-14T16:31:42.360+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-7", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-8", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-9", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-10", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-11", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-12", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-13", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-14", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-15", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "O", + "display": "Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00510" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700301265" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930038035" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632178433" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "71", + "display": "Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "CARRIER" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "professional", + "display": "Professional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010254647" + }, + "billablePeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "created": "2024-12-11T21:37:25+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "identifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_blg_npi_num", + "value": "1407891336" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "4", + "display": "Assignment not accepted/non-participating" + } + } + ], + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999973990" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1407891336" + }, + "display": "CENTRAL NORTH ALABAMA HEALTH SERVICES, INC." + }, + "role": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "code": "primary", + "display": "Primary provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2021-04-02" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + }, + { + "sequence": 8, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-7" + } + }, + { + "sequence": 9, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-8" + } + }, + { + "sequence": 10, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-9" + } + }, + { + "sequence": 11, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-10" + } + }, + { + "sequence": 12, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-11" + } + }, + { + "sequence": 13, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-12" + } + }, + { + "sequence": 14, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-13" + } + }, + { + "sequence": 15, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-14" + } + }, + { + "sequence": 16, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-15" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z604", + "display": "SOCIAL EXCLUSION AND REJECTION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z604", + "display": "SOCIAL EXCLUSION AND REJECTION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Y0704", + "display": "\"FEMALE PARTNER, PERPETRATOR OF MALTREATMENT AND NEGLECT\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Y0704", + "display": "\"FEMALE PARTNER, PERPETRATOR OF MALTREATMENT AND NEGLECT\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M5450" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M5450" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "M797", + "display": "FIBROMYALGIA" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "M797", + "display": "FIBROMYALGIA" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z560", + "display": "\"UNEMPLOYMENT, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010254647" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 91.04, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 91.04, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 91.04, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 113.8, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99495" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 622.62, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 622.62, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 622.62, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 778.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 778.28, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 85.59, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 85.59, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 85.59, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 106.99, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 106.99, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96156" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 367.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 367.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 367.28, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 459.1, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 7, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 8 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 8, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 9 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96127" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 9, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 10 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 10, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 11 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 11, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 12 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 12, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 3 + ], + "informationSequence": [ + 13 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 13, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 14 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99408" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 14, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 15 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0442" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_ansthsa_unit_cnt", + "valueQuantity": { + "value": 1 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 42 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 15, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 16 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2021-03-30", + "end": "2021-03-30" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "AL" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "358162537" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "1", + "display": "ALABAMA" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 14 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 1275.33, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 1275.33, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 1594.17, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 1275.33, + "currency": "USD" + } + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/server/default_datasets/Dataset 2/c4dicCoverage.json b/server/default_datasets/Dataset 2/c4dicCoverage.json new file mode 100644 index 0000000..aa75002 --- /dev/null +++ b/server/default_datasets/Dataset 2/c4dicCoverage.json @@ -0,0 +1,479 @@ +{ + "resourceType": "Bundle", + "id": "89bfef9d-1603-48fb-945d-72a6b3fee76c", + "meta": { + "lastUpdated": "2024-12-11T12:01:20.563+00:00" + }, + "type": "searchset", + "total": 2, + "link": [ + { + "relation": "first", + "url": "http://localhost:8000/v2/fhir/Coverage?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&beneficiary=Patient%2F-10000010263999&_profile=http%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Finsurance-card%2FStructureDefinition%2FC4DIC-Coverage" + }, + { + "relation": "last", + "url": "http://localhost:8000/v2/fhir/Coverage?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&beneficiary=Patient%2F-10000010263999&_profile=http%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Finsurance-card%2FStructureDefinition%2FC4DIC-Coverage" + }, + { + "relation": "self", + "url": "http://localhost:8000/v2/fhir/Coverage/?_count=10&_format=application%2Fjson%2Bfhir&_profile=http%3A%2F%2Fhl7.org%2Ffhir%2Fus%2Finsurance-card%2FStructureDefinition%2FC4DIC-Coverage&beneficiary=Patient%2F-10000010263999&startIndex=0" + } + ], + "entry": [ + { + "resource": { + "resourceType": "Coverage", + "id": "c4dic-part-a--10000010263999", + "meta": { + "lastUpdated": "2023-03-03T20:37:56.945+00:00", + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Coverage|1.1" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Organization|1.1" + ] + }, + "active": true, + "name": "Centers for Medicare and Medicaid Services", + "contact": [ + { + "purpose": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/contactentity-type", + "code": "PAYOR", + "display": "Payor" + } + ] + }, + "telecom": [ + { + "system": "phone", + "value": "1-800-MEDICARE\n(1-800-633-4227)" + }, + { + "system": "phone", + "value": "TTY: 1-877-486-2048" + }, + { + "system": "url", + "value": "www.medicare.gov" + } + ] + } + ] + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ColorPalette-extension", + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ForegroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#F4FEFF" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-BackgroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#092E86" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-HighlightColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#335097" + } + } + ] + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-AdditionalCardInformation-extension", + "valueAnnotation": { + "text": "You may be asked to show this card when you get health care services. Only give your personal Medicare information to health care providers, or people you trust who work with Medicare on your behalf. WARNING: Intentionally misusing this card may be considered fraud and/or other violation of federal law and is punishable by law.\n\nEs posible que le pidan que muestre esta tarjeta cuando reciba servicios de cuidado médico. Solamente dé su información personal de Medicare a los proveedores de salud, sus aseguradores o personas de su confianza que trabajan con Medicare en su nombre. ¡ADVERTENCIA! El mal uso intencional de esta tarjeta puede ser considerado como fraude y/u otra violación de la ley federal y es sancionada por la ley." + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Logo-extension", + "valueString": "https://www.hhs.gov/sites/default/files/logo-white-lg.png" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "code": "10", + "display": "Aged without end-stage renal disease (ESRD)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/orec", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/orec", + "code": "1", + "display": "Disability insurance benefits (DIB)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/crec", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/crec", + "code": "0", + "display": "Old age and survivor’s insurance (OASI)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/esrd_ind", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/esrd_ind", + "code": "0", + "display": "the beneficiary does not have ESRD" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/a_trm_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/a_trm_cd", + "code": "0", + "display": "Not Terminated" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rfrnc_yr", + "valueDate": "2025" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin01", + "code": "3", + "display": "Part A and Part B" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin02", + "code": "3", + "display": "Part A and Part B" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin03", + "code": "3", + "display": "Part A and Part B" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MB", + "display": "Member Number" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-mbi", + "value": "1S00EU7PY99", + "assigner": { + "reference": "#provider-org" + } + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "SUBSIDIZ" + } + ] + }, + "subscriber": { + "reference": "Patient/-10000010263999" + }, + "subscriberId": "1S00EU7PY99", + "beneficiary": { + "reference": "Patient/-10000010263999" + }, + "relationship": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/subscriber-relationship", + "code": "self", + "display": "Self" + } + ] + }, + "period": { + "start": "1987-09-19" + }, + "payor": [ + { + "reference": "#provider-org" + } + ], + "class": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "group", + "display": "Group" + } + ] + }, + "value": "Medicare" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "plan", + "display": "Plan" + } + ] + }, + "value": "Part A" + } + ] + } + }, + { + "resource": { + "resourceType": "Coverage", + "id": "c4dic-part-b--10000010263999", + "meta": { + "lastUpdated": "2023-03-03T20:37:56.945+00:00", + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Coverage|1.1" + ] + }, + "contained": [ + { + "resourceType": "Organization", + "id": "provider-org", + "meta": { + "profile": [ + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Organization|1.1" + ] + }, + "active": true, + "name": "Centers for Medicare and Medicaid Services", + "contact": [ + { + "purpose": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/contactentity-type", + "code": "PAYOR", + "display": "Payor" + } + ] + }, + "telecom": [ + { + "system": "phone", + "value": "1-800-MEDICARE\n(1-800-633-4227)" + }, + { + "system": "phone", + "value": "TTY: 1-877-486-2048" + }, + { + "system": "url", + "value": "www.medicare.gov" + } + ] + } + ] + } + ], + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ColorPalette-extension", + "extension": [ + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-ForegroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#F4FEFF" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-BackgroundColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#092E86" + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-HighlightColor-extension", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/IECColourManagement", + "code": "#335097" + } + } + ] + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-AdditionalCardInformation-extension", + "valueAnnotation": { + "text": "You may be asked to show this card when you get health care services. Only give your personal Medicare information to health care providers, or people you trust who work with Medicare on your behalf. WARNING: Intentionally misusing this card may be considered fraud and/or other violation of federal law and is punishable by law.\n\nEs posible que le pidan que muestre esta tarjeta cuando reciba servicios de cuidado médico. Solamente dé su información personal de Medicare a los proveedores de salud, sus aseguradores o personas de su confianza que trabajan con Medicare en su nombre. ¡ADVERTENCIA! El mal uso intencional de esta tarjeta puede ser considerado como fraude y/u otra violación de la ley federal y es sancionada por la ley." + } + }, + { + "url": "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Logo-extension", + "valueString": "https://www.hhs.gov/sites/default/files/logo-white-lg.png" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/ms_cd", + "code": "10", + "display": "Aged without end-stage renal disease (ESRD)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/b_trm_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/b_trm_cd", + "code": "0", + "display": "Not Terminated" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rfrnc_yr", + "valueDate": "2025" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/crec", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/crec", + "code": "0", + "display": "Old age and survivor’s insurance (OASI)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin01", + "code": "3", + "display": "Part A and Part B" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin02", + "code": "3", + "display": "Part A and Part B" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/buyin03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/buyin03", + "code": "3", + "display": "Part A and Part B" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MB", + "display": "Member Number" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-mbi", + "value": "1S00EU7PY99", + "assigner": { + "reference": "#provider-org" + } + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "SUBSIDIZ" + } + ] + }, + "subscriber": { + "reference": "Patient/-10000010263999" + }, + "subscriberId": "1S00EU7PY99", + "beneficiary": { + "reference": "Patient/-10000010263999" + }, + "relationship": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/subscriber-relationship", + "code": "self", + "display": "Self" + } + ] + }, + "period": { + "start": "1987-09-19" + }, + "payor": [ + { + "reference": "#provider-org" + } + ], + "class": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "group", + "display": "Group" + } + ] + }, + "value": "Medicare" + }, + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/coverage-class", + "code": "plan", + "display": "Plan" + } + ] + }, + "value": "Part B" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/server/default_datasets/Dataset 2/c4dicPatient.json b/server/default_datasets/Dataset 2/c4dicPatient.json new file mode 100644 index 0000000..fd0a264 --- /dev/null +++ b/server/default_datasets/Dataset 2/c4dicPatient.json @@ -0,0 +1,150 @@ +{ + "resourceType": "Bundle", + "id": "1607f9e4-bb6b-4138-b133-7b7d7a8d58a1", + "meta": { + "lastUpdated": "2024-12-11T12:01:20.563+00:00" + }, + "type": "searchset", + "total": 1, + "link": [ + { + "relation": "first", + "url": "http://localhost:8000/v2/fhir/Patient?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&_id=-10000010263999" + }, + { + "relation": "last", + "url": "http://localhost:8000/v2/fhir/Patient?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&_id=-10000010263999" + }, + { + "relation": "self", + "url": "http://localhost:8000/v2/fhir/Patient/?_count=10&_format=application%2Fjson%2Bfhir&_id=-10000010263999&startIndex=0" + } + ], + "entry": [ + { + "resource": { + "resourceType": "Patient", + "id": "-10000010263999", + "meta": { + "lastUpdated": "2023-03-03T20:37:56.945+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-Patient", + "http://hl7.org/fhir/us/insurance-card/StructureDefinition/C4DIC-Patient|1.1" + ] + }, + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/race", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/race", + "code": "1", + "display": "White" + } + }, + { + "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race", + "extension": [ + { + "url": "ombCategory", + "valueCoding": { + "system": "http://terminology.hl7.org/CodeSystem/v3-NullFlavor", + "code": "UNK", + "display": "Unknown" + } + }, + { + "url": "text", + "valueString": "Unknown" + } + ] + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/rfrnc_yr", + "valueDate": "2025" + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_01", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_01", + "code": "NA", + "display": "Non-Medicaid" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_02", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_02", + "code": "NA", + "display": "Non-Medicaid" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dual_03", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dual_03", + "code": "NA", + "display": "Non-Medicaid" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MB", + "display": "Member Number" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/bene_id", + "value": "-10000010263999" + }, + { + "type": { + "coding": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/codesystem/identifier-currency", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/codesystem/identifier-currency", + "code": "current", + "display": "Current" + } + } + ], + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MC", + "display": "Patient's Medicare number" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-mbi", + "value": "1S00EU7PY99" + } + ], + "name": [ + { + "use": "usual", + "family": "Dickinson688", + "given": [ + "Sylvie540", + "M" + ] + } + ], + "gender": "female", + "birthDate": "1953-09-27", + "deceasedBoolean": false, + "address": [ + { + "state": "18", + "postalCode": "40218" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/server/default_datasets/Dataset 2/eobData.json b/server/default_datasets/Dataset 2/eobData.json new file mode 100644 index 0000000..6dd56f7 --- /dev/null +++ b/server/default_datasets/Dataset 2/eobData.json @@ -0,0 +1,42950 @@ +{ + "resourceType": "Bundle", + "id": "a8965297-a152-4f27-8372-8b66cf614819", + "meta": { + "lastUpdated": "2024-12-11T12:01:20.563+00:00" + }, + "type": "searchset", + "total": 67, + "link": [ + { + "relation": "first", + "url": "http://localhost:8000/v2/fhir/ExplanationOfBenefit?_format=application%2Fjson%2Bfhir&startIndex=0&_count=10&patient=-10000010263999" + }, + { + "relation": "next", + "url": "http://localhost:8000/v2/fhir/ExplanationOfBenefit?_format=application%2Fjson%2Bfhir&startIndex=10&_count=10&patient=-10000010263999" + }, + { + "relation": "last", + "url": "http://localhost:8000/v2/fhir/ExplanationOfBenefit?_format=application%2Fjson%2Bfhir&startIndex=60&_count=10&patient=-10000010263999" + }, + { + "relation": "self", + "url": "http://localhost:8000/v2/fhir/ExplanationOfBenefit/?_count=10&_format=application%2Fjson%2Bfhir&patient=-10000010263999&startIndex=0" + } + ], + "entry": [ + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "carrier--10000930456505", + "meta": { + "lastUpdated": "2023-03-03T20:42:22.021+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-7", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-8", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-9", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-10", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-11", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-12", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-13", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-14", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-15", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-16", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-17", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-18", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-19", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-20", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-21", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "O", + "display": "Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549188" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456505" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811522" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "71", + "display": "Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "CARRIER" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "professional", + "display": "Professional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "identifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_blg_npi_num", + "value": "1902856123" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "3", + "display": "Assignment accepted/non-participating" + } + } + ], + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1902856123" + }, + "display": "SHEPHERDSVILLE FAMILY HEALTH CLINIC, PSC" + }, + "role": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "code": "primary", + "display": "Primary provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2018-12-28" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + }, + { + "sequence": 8, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-7" + } + }, + { + "sequence": 9, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-8" + } + }, + { + "sequence": 10, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-9" + } + }, + { + "sequence": 11, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-10" + } + }, + { + "sequence": 12, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-11" + } + }, + { + "sequence": 13, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-12" + } + }, + { + "sequence": 14, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-13" + } + }, + { + "sequence": 15, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-14" + } + }, + { + "sequence": 16, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-15" + } + }, + { + "sequence": 17, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-16" + } + }, + { + "sequence": 18, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-17" + } + }, + { + "sequence": 19, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-18" + } + }, + { + "sequence": 20, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-19" + } + }, + { + "sequence": 21, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-20" + } + }, + { + "sequence": 22, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-21" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "P2832" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "P2832" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5941" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5941" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z591", + "display": "INADEQUATE HOUSING" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z591", + "display": "INADEQUATE HOUSING" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 107.21, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 107.21, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 107.21, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 8.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 8.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 125.79, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 8.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "M5B", + "display": "Specialist - psychiatry" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G8839" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 7, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 8 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 8, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 9 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96156" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 9, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 10 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 10, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 11 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 11, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 12 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 12, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 10 + ], + "informationSequence": [ + 13 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 13, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 14 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 14, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 15 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Z2", + "display": "Undefined codes" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 15, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 16 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "M1069" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 16, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 17 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 17, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 18 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99401" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 18, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 19 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 19, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 20 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 20, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 21 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 52 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 21, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 22 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 918.71, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 233.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 918.71, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 1381.39, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 918.71, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "carrier--10000930456506", + "meta": { + "lastUpdated": "2023-03-03T20:42:22.021+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-7", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-8", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-9", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-10", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-11", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-12", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-13", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-14", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-15", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-16", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-17", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-18", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-19", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-20", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-21", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-22", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-23", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "O", + "display": "Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549189" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456506" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811523" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "71", + "display": "Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "CARRIER" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "professional", + "display": "Professional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "identifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_blg_npi_num", + "value": "1902856123" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "2", + "display": "All or some covered and allowed expenses applied to deductible Participating" + } + } + ], + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1902856123" + }, + "display": "SHEPHERDSVILLE FAMILY HEALTH CLINIC, PSC" + }, + "role": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "code": "primary", + "display": "Primary provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2020-01-03" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + }, + { + "sequence": 8, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-7" + } + }, + { + "sequence": 9, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-8" + } + }, + { + "sequence": 10, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-9" + } + }, + { + "sequence": 11, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-10" + } + }, + { + "sequence": 12, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-11" + } + }, + { + "sequence": 13, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-12" + } + }, + { + "sequence": 14, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-13" + } + }, + { + "sequence": 15, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-14" + } + }, + { + "sequence": 16, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-15" + } + }, + { + "sequence": 17, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-16" + } + }, + { + "sequence": 18, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-17" + } + }, + { + "sequence": 19, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-18" + } + }, + { + "sequence": 20, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-19" + } + }, + { + "sequence": 21, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-20" + } + }, + { + "sequence": 22, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-21" + } + }, + { + "sequence": 23, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-22" + } + }, + { + "sequence": 24, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-23" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G4754", + "display": "PARASOMNIA IN CONDITIONS CLASSIFIED ELSEWHERE" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G4754", + "display": "PARASOMNIA IN CONDITIONS CLASSIFIED ELSEWHERE" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5941" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5941" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z591", + "display": "INADEQUATE HOUSING" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z591", + "display": "INADEQUATE HOUSING" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 13, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 107.21, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 107.21, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 107.21, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 8.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 8.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 125.79, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 8.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 108.8, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "99495" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 449.77, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 449.77, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 449.77, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 562.21, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 562.21, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "M5B", + "display": "Specialist - psychiatry" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G8839" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 7, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 8 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 8, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 9 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96156" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 9, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 10 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 10, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 11 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 11, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 12 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 12, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 13 + ], + "informationSequence": [ + 13 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 13, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 14 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 14, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 15 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 15, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 16 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 16, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 17 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96127" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 17, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 5 + ], + "informationSequence": [ + 18 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 18, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 19 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Z2", + "display": "Undefined codes" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 19, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 20 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "M1069" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 20, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 21 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 21, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 22 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Y1", + "display": "Other - Medicare fee schedule" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 22, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 23 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G0444" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 48 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 23, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 24 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 1297.53, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 233.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 1297.53, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 1854.91, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 1297.53, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "carrier--10000930456508", + "meta": { + "lastUpdated": "2023-03-03T20:42:22.021+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Professional-NonClinician" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-7", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-8", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-9", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-10", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-11", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-12", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-13", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-14", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-15", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-16", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-17", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "O", + "display": "Part B physician/supplier claim record (processed by local carriers; can include DMEPOS services)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549191" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456508" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811525" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "71", + "display": "Local carrier non-durable medical equipment, prosthetics, orthotics, and supplies (DMEPOS) claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "CARRIER" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "professional", + "display": "Professional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "provider": { + "identifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_blg_npi_num", + "value": "1902856123" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + } + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prvdr_type_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "7", + "display": "Participating provider not accepting assignment" + } + } + ], + "sequence": 3, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + }, + { + "sequence": 4, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1902856123" + }, + "display": "SHEPHERDSVILLE FAMILY HEALTH CLINIC, PSC" + }, + "role": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claimcareteamrole", + "code": "primary", + "display": "Primary provider" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2022-01-14" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + }, + { + "sequence": 8, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-7" + } + }, + { + "sequence": 9, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-8" + } + }, + { + "sequence": 10, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-9" + } + }, + { + "sequence": 11, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-10" + } + }, + { + "sequence": 12, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-11" + } + }, + { + "sequence": 13, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-12" + } + }, + { + "sequence": 14, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-13" + } + }, + { + "sequence": 15, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-14" + } + }, + { + "sequence": 16, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-15" + } + }, + { + "sequence": 17, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-16" + } + }, + { + "sequence": 18, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-17" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "principal" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G4754", + "display": "PARASOMNIA IN CONDITIONS CLASSIFIED ELSEWHERE" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G4754", + "display": "PARASOMNIA IN CONDITIONS CLASSIFIED ELSEWHERE" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5989" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5989" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z591", + "display": "INADEQUATE HOUSING" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z591", + "display": "INADEQUATE HOUSING" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "secondary", + "display": "Secondary" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-b--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 107.21, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 107.21, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 107.21, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 9 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 8.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 8.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 125.79, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 8.17, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 136.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "M5B", + "display": "Specialist - psychiatry" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "G8839" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 7, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 8 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 78.47, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 98.09, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 8, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 9 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96156" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 322.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 403.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 9, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 10 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 10, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 11 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 11, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 12 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 12, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 13 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 13, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 14 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 14, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 15 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "96127" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 15, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 16 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "Z2", + "display": "Undefined codes" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 16, + "careTeamSequence": [ + 3, + 4 + ], + "informationSequence": [ + 17 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "M1069" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_mtus_cnt", + "valueQuantity": { + "value": 35 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 17, + "careTeamSequence": [ + 3, + 4 + ], + "diagnosisSequence": [ + 2 + ], + "informationSequence": [ + 18 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "1", + "display": "Medical care" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL" + } + ] + }, + "servicedPeriod": { + "start": "2022-01-09", + "end": "2022-01-09" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "KY" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_zip", + "code": "401656028" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_prcng_lclty_cd", + "code": "32", + "display": "KENTUCKY" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 16 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudicationDiscriminator", + "code": "denialreason", + "display": "Denial Reason" + } + ] + }, + "reason": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/carr_line_rdcd_pmt_phys_astn_c", + "code": "0", + "display": "N/A" + } + ] + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 817.43, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 233.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 817.43, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 1254.79, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 817.43, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "dme--10000930456512", + "meta": { + "lastUpdated": "2023-03-03T20:43:08.200+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Inpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "M", + "display": "Part B DMEPOS claim record (processed by DME Regional Carrier)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549195" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456512" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811586" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "82", + "display": "DMERC; DMEPOS claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "DME" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2015-12-06", + "end": "2015-12-06" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "1", + "display": "Participating" + } + } + ], + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1902856123" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2015-12-11" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G4733", + "display": "OBSTRUCTIVE SLEEP APNEA (ADULT) (PEDIATRIC)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G4733", + "display": "OBSTRUCTIVE SLEEP APNEA (ADULT) (PEDIATRIC)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5941" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5941" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z591", + "display": "INADEQUATE HOUSING" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z591", + "display": "INADEQUATE HOUSING" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5989" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5989" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-a--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 50, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4253" + } + ] + }, + "servicedPeriod": { + "start": "2015-12-06", + "end": "2015-12-06" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 1.88, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7030" + } + ] + }, + "servicedPeriod": { + "start": "2015-12-06", + "end": "2015-12-06" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 5, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7038" + } + ] + }, + "servicedPeriod": { + "start": "2015-12-06", + "end": "2015-12-06" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7037" + } + ] + }, + "servicedPeriod": { + "start": "2015-12-06", + "end": "2015-12-06" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7035" + } + ] + }, + "servicedPeriod": { + "start": "2015-12-06", + "end": "2015-12-06" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 9.4, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "dme--10000930456513", + "meta": { + "lastUpdated": "2023-03-03T20:43:08.200+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Inpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "M", + "display": "Part B DMEPOS claim record (processed by DME Regional Carrier)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549196" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456513" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811587" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "82", + "display": "DMERC; DMEPOS claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "DME" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2016-12-11", + "end": "2016-12-11" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "5", + "display": "Assignment accepted but all or some covered and allowed expenses applied to deductible Non-participating." + } + } + ], + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1902856123" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2016-12-16" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Q870", + "display": "CONGEN MALFORM SYNDROMES PREDOM AFFECTING FACIAL APPEARANCE" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Q870", + "display": "CONGEN MALFORM SYNDROMES PREDOM AFFECTING FACIAL APPEARANCE" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z7689", + "display": "PERSONS ENCOUNTERING HEALTH SERVICES IN OTH CIRCUMSTANCES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z7689", + "display": "PERSONS ENCOUNTERING HEALTH SERVICES IN OTH CIRCUMSTANCES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z591", + "display": "INADEQUATE HOUSING" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z591", + "display": "INADEQUATE HOUSING" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5989" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5989" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-a--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "7", + "display": "Clinics, groups, associations, or partnerships for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7034" + } + ] + }, + "servicedPeriod": { + "start": "2016-12-11", + "end": "2016-12-11" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 18 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 5, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "7", + "display": "Clinics, groups, associations, or partnerships for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7038" + } + ] + }, + "servicedPeriod": { + "start": "2016-12-11", + "end": "2016-12-11" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 18 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "7", + "display": "Clinics, groups, associations, or partnerships for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4604" + } + ] + }, + "servicedPeriod": { + "start": "2016-12-11", + "end": "2016-12-11" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 18 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "7", + "display": "Clinics, groups, associations, or partnerships for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7035" + } + ] + }, + "servicedPeriod": { + "start": "2016-12-11", + "end": "2016-12-11" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 18 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "dme--10000930456514", + "meta": { + "lastUpdated": "2023-03-03T20:43:08.200+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Inpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "M", + "display": "Part B DMEPOS claim record (processed by DME Regional Carrier)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549197" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456514" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811588" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "82", + "display": "DMERC; DMEPOS claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "DME" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2017-12-17", + "end": "2017-12-17" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "3", + "display": "Assignment accepted/non-participating" + } + } + ], + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1902856123" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2017-12-22" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "P2832" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "P2832" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5989" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5989" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z591", + "display": "INADEQUATE HOUSING" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z591", + "display": "INADEQUATE HOUSING" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z558", + "display": "OTHER PROBLEMS RELATED TO EDUCATION AND LITERACY" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-a--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 50, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4253" + } + ] + }, + "servicedPeriod": { + "start": "2017-12-17", + "end": "2017-12-17" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 1.88, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 100, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4259" + } + ] + }, + "servicedPeriod": { + "start": "2017-12-17", + "end": "2017-12-17" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7030" + } + ] + }, + "servicedPeriod": { + "start": "2017-12-17", + "end": "2017-12-17" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 5, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7038" + } + ] + }, + "servicedPeriod": { + "start": "2017-12-17", + "end": "2017-12-17" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4604" + } + ] + }, + "servicedPeriod": { + "start": "2017-12-17", + "end": "2017-12-17" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7035" + } + ] + }, + "servicedPeriod": { + "start": "2017-12-17", + "end": "2017-12-17" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 9.4, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "dme--10000930456516", + "meta": { + "lastUpdated": "2023-03-03T20:43:08.200+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Inpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "M", + "display": "Part B DMEPOS claim record (processed by DME Regional Carrier)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549199" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456516" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811590" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "82", + "display": "DMERC; DMEPOS claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "DME" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "3", + "display": "Assignment accepted/non-participating" + } + } + ], + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1902856123" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2018-12-28" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "P2832" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "P2832" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5941" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5941" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z591", + "display": "INADEQUATE HOUSING" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z591", + "display": "INADEQUATE HOUSING" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-a--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 100, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4259" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7034" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 5, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7038" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7037" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7035" + } + ] + }, + "servicedPeriod": { + "start": "2018-12-23", + "end": "2018-12-23" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "dme--10000930456519", + "meta": { + "lastUpdated": "2023-03-03T20:43:08.200+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Inpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-7", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "M", + "display": "Part B DMEPOS claim record (processed by DME Regional Carrier)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549202" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456519" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811593" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "82", + "display": "DMERC; DMEPOS claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "DME" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "4", + "display": "Assignment not accepted/non-participating" + } + } + ], + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1902856123" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2020-01-03" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + }, + { + "sequence": 8, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-7" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "F78A9" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "F78A9" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5989" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5989" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z591", + "display": "INADEQUATE HOUSING" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z591", + "display": "INADEQUATE HOUSING" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-a--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 50, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "1", + "display": "Physicians or suppliers billing as solo practitioners for whom SSN's are shown in the physician ID code field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4253" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 1.88, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 0, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "1", + "display": "Physicians or suppliers billing as solo practitioners for whom SSN's are shown in the physician ID code field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "E0601" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 0, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "1", + "display": "Physicians or suppliers billing as solo practitioners for whom SSN's are shown in the physician ID code field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "E0562" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "1", + "display": "Physicians or suppliers billing as solo practitioners for whom SSN's are shown in the physician ID code field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7031" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 5, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "1", + "display": "Physicians or suppliers billing as solo practitioners for whom SSN's are shown in the physician ID code field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7038" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "1", + "display": "Physicians or suppliers billing as solo practitioners for whom SSN's are shown in the physician ID code field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4604" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "1", + "display": "Physicians or suppliers billing as solo practitioners for whom SSN's are shown in the physician ID code field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 7, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 8 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7035" + } + ] + }, + "servicedPeriod": { + "start": "2019-12-29", + "end": "2019-12-29" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 22 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 9.4, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "dme--10000930456521", + "meta": { + "lastUpdated": "2023-03-03T20:43:08.228+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Inpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "M", + "display": "Part B DMEPOS claim record (processed by DME Regional Carrier)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549204" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456521" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811595" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "82", + "display": "DMERC; DMEPOS claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "DME" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2021-01-03", + "end": "2021-01-03" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999940692" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "5", + "display": "Assignment accepted but all or some covered and allowed expenses applied to deductible Non-participating." + } + } + ], + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1902856123" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2021-01-08" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "F410", + "display": "PANIC DISORDER �EPISODIC PAROXYSMAL ANXIETY� " + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "F410", + "display": "PANIC DISORDER �EPISODIC PAROXYSMAL ANXIETY� " + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G4754", + "display": "PARASOMNIA IN CONDITIONS CLASSIFIED ELSEWHERE" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G4754", + "display": "PARASOMNIA IN CONDITIONS CLASSIFIED ELSEWHERE" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5941" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5941" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z591", + "display": "INADEQUATE HOUSING" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z591", + "display": "INADEQUATE HOUSING" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-a--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 50, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4253" + } + ] + }, + "servicedPeriod": { + "start": "2021-01-03", + "end": "2021-01-03" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 1.88, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7031" + } + ] + }, + "servicedPeriod": { + "start": "2021-01-03", + "end": "2021-01-03" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 5, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7038" + } + ] + }, + "servicedPeriod": { + "start": "2021-01-03", + "end": "2021-01-03" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7037" + } + ] + }, + "servicedPeriod": { + "start": "2021-01-03", + "end": "2021-01-03" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "183948" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "3", + "display": "Suppliers (other than sole proprietorship) for whom employer identification (EI) numbers are used in coding the ID field." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7035" + } + ] + }, + "servicedPeriod": { + "start": "2021-01-03", + "end": "2021-01-03" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "11", + "display": "Office. Location, other than a hospital, skilled nursing facility (SNF), military treatment facility, community health center, State or local public health clinic, or intermediate care facility (ICF), where the health professional routinely provides health examinations, diagnosis, and treatment of illness or injury on an ambulatory basis." + } + ] + }, + "quantity": { + "value": 20 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 9.4, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + } + ] + } + ] + } + }, + { + "resource": { + "resourceType": "ExplanationOfBenefit", + "id": "dme--10000930456523", + "meta": { + "lastUpdated": "2023-03-03T20:43:08.228+00:00", + "profile": [ + "http://hl7.org/fhir/us/carin-bb/StructureDefinition/C4BB-ExplanationOfBenefit-Inpatient-Institutional" + ] + }, + "contained": [ + { + "resourceType": "Observation", + "id": "line-observation-1", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-2", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-3", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-4", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-5", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + }, + { + "resourceType": "Observation", + "id": "line-observation-6", + "status": "unknown", + "code": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_type_cd", + "code": "R1", + "display": "Hemoglobin Test" + } + ] + }, + "valueQuantity": { + "value": 0.0 + } + } + ], + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/nch_near_line_rec_ident_cd", + "code": "M", + "display": "Part B DMEPOS claim record (processed by DME Regional Carrier)" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_num", + "value": "00660" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_cntl_num", + "value": "-700549206" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_pmt_dnl_cd", + "code": "1", + "display": "Physician/supplier" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/asgmntcd", + "code": "A", + "display": "Assigned claim" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/carr_clm_entry_cd", + "code": "1", + "display": "Original debit; void of original debit (If CLM_DISP_CD = 3, code 1 means voided original debit)" + } + } + ], + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/variables/clm_id", + "value": "-10000930456523" + }, + { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "uc", + "display": "Unique Claim ID" + } + ] + }, + "system": "https://bluebutton.cms.gov/resources/identifier/claim-group", + "value": "-1632811597" + } + ], + "status": "active", + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/nch_clm_type_cd", + "code": "82", + "display": "DMERC; DMEPOS claim" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/eob-type", + "code": "DME" + }, + { + "system": "http://terminology.hl7.org/CodeSystem/claim-type", + "code": "institutional", + "display": "Institutional" + } + ] + }, + "use": "claim", + "patient": { + "reference": "Patient/-10000010263999" + }, + "billablePeriod": { + "start": "2021-02-07", + "end": "2021-02-07" + }, + "created": "2024-12-17T22:18:18+00:00", + "insurer": { + "identifier": { + "value": "CMS" + } + }, + "referral": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999986497" + } + }, + "outcome": "complete", + "disposition": "1", + "careTeam": [ + { + "sequence": 1, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "9999986497" + } + }, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "referring", + "display": "Referring" + } + ] + } + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prtcptng_ind_cd", + "code": "2", + "display": "All or some covered and allowed expenses applied to deductible Participating" + } + } + ], + "sequence": 2, + "provider": { + "identifier": { + "type": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBIdentifierType", + "code": "npi", + "display": "National Provider Identifier" + } + ] + }, + "value": "1639711294" + } + }, + "responsible": true, + "role": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimCareTeamRole", + "code": "performing", + "display": "Performing provider" + } + ] + }, + "qualification": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_spclty", + "code": "01", + "display": "General practice" + } + ] + } + } + ], + "supportingInfo": [ + { + "sequence": 1, + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBSupportingInfoType", + "code": "clmrecvddate", + "display": "Claim Received Date" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/nch_wkly_proc_dt", + "display": "NCH Weekly Claim Processing Date" + } + ] + }, + "timingDate": "2021-02-12" + }, + { + "sequence": 2, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-1" + } + }, + { + "sequence": 3, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-2" + } + }, + { + "sequence": 4, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-3" + } + }, + { + "sequence": 5, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-4" + } + }, + { + "sequence": 6, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-5" + } + }, + { + "sequence": 7, + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/claiminformationcategory", + "code": "info", + "display": "Information" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/information", + "code": "https://bluebutton.cms.gov/resources/variables/line_hct_hgb_rslt_num", + "display": "Hematocrit / Hemoglobin Test Results" + } + ] + }, + "valueReference": { + "reference": "#line-observation-6" + } + } + ], + "diagnosis": [ + { + "sequence": 1, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z733", + "display": "\"STRESS, NOT ELSEWHERE CLASSIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-diagnosistype", + "code": "principal", + "display": "Principal Diagnosis" + } + ] + } + ] + }, + { + "sequence": 2, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "F410", + "display": "PANIC DISORDER �EPISODIC PAROXYSMAL ANXIETY� " + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "F410", + "display": "PANIC DISORDER �EPISODIC PAROXYSMAL ANXIETY� " + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 3, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z608", + "display": "OTHER PROBLEMS RELATED TO SOCIAL ENVIRONMENT" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 4, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E785", + "display": "\"HYPERLIPIDEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 5, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E034", + "display": "ATROPHY OF THYROID (ACQUIRED)" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 6, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "E669", + "display": "\"OBESITY, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 7, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "O039", + "display": "COMPLETE OR UNSP SPONTANEOUS ABORTION WITHOUT COMPLICATION" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 8, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G4754", + "display": "PARASOMNIA IN CONDITIONS CLASSIFIED ELSEWHERE" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G4754", + "display": "PARASOMNIA IN CONDITIONS CLASSIFIED ELSEWHERE" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 9, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "G479", + "display": "\"SLEEP DISORDER, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 10, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "Z5989" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "Z5989" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 11, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "R7303", + "display": "PREDIABETES" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "R7303", + "display": "PREDIABETES" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + }, + { + "sequence": 12, + "diagnosisCodeableConcept": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/icd-10-cm", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + }, + { + "system": "http://hl7.org/fhir/sid/icd-10", + "code": "D649", + "display": "\"ANEMIA, UNSPECIFIED\"" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBClaimDiagnosisType", + "code": "other", + "display": "Other" + } + ] + } + ] + } + ], + "insurance": [ + { + "focal": true, + "coverage": { + "reference": "Coverage/part-a--10000010263999" + } + } + ], + "item": [ + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "180040" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 50, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "0", + "display": "Clinics, groups, associations, partnerships, or other entities for whom the carrier's own ID number has been assigned." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 1, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 2 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4253" + } + ] + }, + "servicedPeriod": { + "start": "2021-02-07", + "end": "2021-02-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "22", + "display": "Outpatient Hospital. A portion of a hospital which provides diagnostic, therapeutic (both surgical and nonsurgical), and rehabilitation services to sick or injured persons who do not require hospitalization or institutionalization." + } + ] + }, + "quantity": { + "value": 19 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 1.88, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 9.4, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "180040" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 100, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "0", + "display": "Clinics, groups, associations, partnerships, or other entities for whom the carrier's own ID number has been assigned." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 2, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 3 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4256" + } + ] + }, + "servicedPeriod": { + "start": "2021-02-07", + "end": "2021-02-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "22", + "display": "Outpatient Hospital. A portion of a hospital which provides diagnostic, therapeutic (both surgical and nonsurgical), and rehabilitation services to sick or injured persons who do not require hospitalization or institutionalization." + } + ] + }, + "quantity": { + "value": 19 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "180040" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "0", + "display": "Clinics, groups, associations, partnerships, or other entities for whom the carrier's own ID number has been assigned." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 3, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 4 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7034" + } + ] + }, + "servicedPeriod": { + "start": "2021-02-07", + "end": "2021-02-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "22", + "display": "Outpatient Hospital. A portion of a hospital which provides diagnostic, therapeutic (both surgical and nonsurgical), and rehabilitation services to sick or injured persons who do not require hospitalization or institutionalization." + } + ] + }, + "quantity": { + "value": 19 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "180040" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 5, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "0", + "display": "Clinics, groups, associations, partnerships, or other entities for whom the carrier's own ID number has been assigned." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 4, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 5 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7038" + } + ] + }, + "servicedPeriod": { + "start": "2021-02-07", + "end": "2021-02-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "22", + "display": "Outpatient Hospital. A portion of a hospital which provides diagnostic, therapeutic (both surgical and nonsurgical), and rehabilitation services to sick or injured persons who do not require hospitalization or institutionalization." + } + ] + }, + "quantity": { + "value": 19 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "180040" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "0", + "display": "Clinics, groups, associations, partnerships, or other entities for whom the carrier's own ID number has been assigned." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 5, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 6 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A4604" + } + ] + }, + "servicedPeriod": { + "start": "2021-02-07", + "end": "2021-02-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "22", + "display": "Outpatient Hospital. A portion of a hospital which provides diagnostic, therapeutic (both surgical and nonsurgical), and rehabilitation services to sick or injured persons who do not require hospitalization or institutionalization." + } + ] + }, + "quantity": { + "value": 19 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + }, + { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "valueIdentifier": { + "system": "https://bluebutton.cms.gov/resources/variables/suplrnum", + "value": "180040" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_scrn_svgs_amt", + "valueQuantity": { + "value": 0.0 + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cnt", + "valueQuantity": { + "value": 1, + "unit": "Values reported as zero", + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_mtus_cd", + "code": "0" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_prcng_state_cd", + "code": "18", + "display": "Kentucky" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/dmerc_line_supplr_type_cd", + "code": "0", + "display": "Clinics, groups, associations, partnerships, or other entities for whom the carrier's own ID number has been assigned." + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/betos_cd", + "code": "D1E", + "display": "Other DME" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_cd" + } + }, + { + "url": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/line_prcsg_ind_cd", + "code": "A", + "display": "Allowed" + } + } + ], + "sequence": 6, + "careTeamSequence": [ + 2 + ], + "diagnosisSequence": [ + 1 + ], + "informationSequence": [ + 7 + ], + "category": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_cms_type_srvc_cd", + "code": "P", + "display": "Lump sum purchase of DME, prosthetics orthotics" + } + ] + }, + "productOrService": { + "extension": [ + { + "url": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "valueCoding": { + "system": "http://hl7.org/fhir/StructureDefinition/data-absent-reason", + "code": "NULL", + "display": "Data Absent Reason" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/hcpcs", + "code": "A7035" + } + ] + }, + "servicedPeriod": { + "start": "2021-02-07", + "end": "2021-02-07" + }, + "locationCodeableConcept": { + "extension": [ + { + "url": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "valueCoding": { + "system": "https://bluebutton.cms.gov/resources/variables/prvdr_state_cd", + "code": "18", + "display": "Kentucky" + } + } + ], + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/variables/line_place_of_srvc_cd", + "code": "22", + "display": "Outpatient Hospital. A portion of a hospital which provides diagnostic, therapeutic (both surgical and nonsurgical), and rehabilitation services to sick or injured persons who do not require hospitalization or institutionalization." + } + ] + }, + "quantity": { + "value": 19 + }, + "adjudication": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/rev_cntr_prvdr_pmt_amt", + "display": "Revenue Center (Medicare) Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prmry_alowd_chrg_amt", + "display": "Line Primary Payer Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "benefit", + "display": "Benefit Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_nch_pmt_amt", + "display": "Line NCH Medicare Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtopatient", + "display": "Paid to patient" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_prvdr_pmt_amt", + "display": "Line Provider Payment Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "deductible", + "display": "Deductible" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_ptb_ddctbl_amt", + "display": "Line Beneficiary Part B Deductible Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_prmry_pyr_pd_amt", + "display": "Line Primary Payer (if not Medicare) Paid Amount" + } + ] + }, + "amount": { + "value": 1.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "coinsurance", + "display": "Co-insurance" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_coinsrnc_amt", + "display": "Line Beneficiary Coinsurance Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_sbmtd_chrg_amt", + "display": "Line Submitted Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "eligible", + "display": "Eligible Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_alowd_chrg_amt", + "display": "Line Allowed Charge Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "paidtoprovider", + "display": "Paid to provider" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_bene_pmt_amt", + "display": "Line Payment Amount to Beneficiary" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + }, + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/adjudication", + "code": "submitted", + "display": "Submitted Amount" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/line_dme_prchs_price_amt", + "display": "Line DME Purchase Price Amount" + } + ] + }, + "amount": { + "value": 0.0, + "currency": "USD" + } + } + ] + } + ], + "total": [ + { + "category": { + "coding": [ + { + "system": "http://hl7.org/fhir/us/carin-bb/CodeSystem/C4BBAdjudication", + "code": "priorpayerpaid", + "display": "Prior payer paid" + }, + { + "system": "https://bluebutton.cms.gov/resources/codesystem/adjudication", + "code": "https://bluebutton.cms.gov/resources/variables/clm_tot_chrg_amt", + "display": "Claim Total Charge Amount" + } + ] + }, + "amount": { + "value": 7.52, + "currency": "USD" + } + } + ], + "payment": { + "amount": { + "value": 7.52, + "currency": "USD" + } + }, + "benefitBalance": [ + { + "category": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/ex-benefitcategory", + "code": "1", + "display": "Medical Care" + } + ] + }, + "financial": [ + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/carr_clm_cash_ddctbl_apld_amt", + "display": "Carrier Claim Cash Deductible Applied Amount (sum of all line-level deductible amounts)" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_prvdr_pmt_amt", + "display": "NCH Claim Provider Payment Amount" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_clm_bene_pmt_amt", + "display": "NCH Claim Payment Amount to Beneficiary" + } + ] + }, + "usedMoney": { + "value": 0.0, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_sbmtd_chrg_amt", + "display": "NCH Carrier Claim Submitted Charge Amount (sum of all line-level submitted charges)" + } + ] + }, + "usedMoney": { + "value": 9.4, + "currency": "USD" + } + }, + { + "type": { + "coding": [ + { + "system": "https://bluebutton.cms.gov/resources/codesystem/benefit-balance", + "code": "https://bluebutton.cms.gov/resources/variables/nch_carr_clm_alowd_amt", + "display": "NCH Carrier Claim Allowed Charge Amount (sum of all line-level allowed charges)" + } + ] + }, + "usedMoney": { + "value": 7.52, + "currency": "USD" + } + } + ] + } + ] + } + } + ] +} \ No newline at end of file