This page is part of the FHIR Specification (v3.0.2: STU 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2
Financial Management Work Group | Maturity Level: 2 | Trial Use | Compartments: Practitioner |
This resource provides payment details and claim references supporting a bulk payment.
The PaymentReconciliation resource provides the bulk payment details associated with a payment by the payor for goods and services rendered by a provider to patients covered by insurance plans offered by that payor. These are the payment reconciliation details which align to the individual payment amounts indicated on discrete ClaimResponses.
Bulk payments need to provide a means to associate the amounts paid again specific Claims, and other financial exchanges and adjustments, to the bulk payment itself in order to reconcile provider accounts receivable.
Structure
UML Diagram (Legend)
XML Template
<PaymentReconciliation xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <identifier><!-- 0..* Identifier Business Identifier --></identifier> <status value="[code]"/><!-- 0..1 active | cancelled | draft | entered-in-error --> <period><!-- 0..1 Period Period covered --></period> <created value="[dateTime]"/><!-- 0..1 Creation date --> <organization><!-- 0..1 Reference(Organization) Insurer --></organization> <request><!-- 0..1 Reference(ProcessRequest) Claim reference --></request> <outcome><!-- 0..1 CodeableConcept complete | error | partial --></outcome> <disposition value="[string]"/><!-- 0..1 Disposition Message --> <requestProvider><!-- 0..1 Reference(Practitioner) Responsible practitioner --></requestProvider> <requestOrganization><!-- 0..1 Reference(Organization) Responsible organization --></requestOrganization> <detail> <!-- 0..* List of settlements --> <type><!-- 1..1 CodeableConcept Type code --></type> <request><!-- 0..1 Reference(Any) Claim --></request> <response><!-- 0..1 Reference(Any) Claim Response --></response> <submitter><!-- 0..1 Reference(Organization) Organization which submitted the claim --></submitter> <payee><!-- 0..1 Reference(Organization) Organization which is receiving the payment --></payee> <date value="[date]"/><!-- 0..1 Invoice date --> <amount><!-- 0..1 Money Amount being paid --></amount> </detail> <form><!-- 0..1 CodeableConcept Printed Form Identifier --></form> <total><!-- 0..1 Money Total amount of Payment --></total> <processNote> <!-- 0..* Processing comments --> <type><!-- 0..1 CodeableConcept display | print | printoper --></type> <text value="[string]"/><!-- 0..1 Comment on the processing --> </processNote> </PaymentReconciliation>
JSON Template
{ "resourceType" : "PaymentReconciliation", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "identifier" : [{ Identifier }], // Business Identifier "status" : "<code>", // active | cancelled | draft | entered-in-error "period" : { Period }, // Period covered "created" : "<dateTime>", // Creation date "organization" : { Reference(Organization) }, // Insurer "request" : { Reference(ProcessRequest) }, // Claim reference "outcome" : { CodeableConcept }, // complete | error | partial "disposition" : "<string>", // Disposition Message "requestProvider" : { Reference(Practitioner) }, // Responsible practitioner "requestOrganization" : { Reference(Organization) }, // Responsible organization "detail" : [{ // List of settlements "type" : { CodeableConcept }, // R! Type code "request" : { Reference(Any) }, // Claim "response" : { Reference(Any) }, // Claim Response "submitter" : { Reference(Organization) }, // Organization which submitted the claim "payee" : { Reference(Organization) }, // Organization which is receiving the payment "date" : "<date>", // Invoice date "amount" : { Money } // Amount being paid }], "form" : { CodeableConcept }, // Printed Form Identifier "total" : { Money }, // Total amount of Payment "processNote" : [{ // Processing comments "type" : { CodeableConcept }, // display | print | printoper "text" : "<string>" // Comment on the processing }] }
Turtle Template
@prefix fhir: <http://hl7.org/fhir/> . [ a fhir:PaymentReconciliation; fhir:nodeRole fhir:treeRoot; # if this is the parser root # from Resource: .id, .meta, .implicitRules, and .language # from DomainResource: .text, .contained, .extension, and .modifierExtension fhir:PaymentReconciliation.identifier [ Identifier ], ... ; # 0..* Business Identifier fhir:PaymentReconciliation.status [ code ]; # 0..1 active | cancelled | draft | entered-in-error fhir:PaymentReconciliation.period [ Period ]; # 0..1 Period covered fhir:PaymentReconciliation.created [ dateTime ]; # 0..1 Creation date fhir:PaymentReconciliation.organization [ Reference(Organization) ]; # 0..1 Insurer fhir:PaymentReconciliation.request [ Reference(ProcessRequest) ]; # 0..1 Claim reference fhir:PaymentReconciliation.outcome [ CodeableConcept ]; # 0..1 complete | error | partial fhir:PaymentReconciliation.disposition [ string ]; # 0..1 Disposition Message fhir:PaymentReconciliation.requestProvider [ Reference(Practitioner) ]; # 0..1 Responsible practitioner fhir:PaymentReconciliation.requestOrganization [ Reference(Organization) ]; # 0..1 Responsible organization fhir:PaymentReconciliation.detail [ # 0..* List of settlements fhir:PaymentReconciliation.detail.type [ CodeableConcept ]; # 1..1 Type code fhir:PaymentReconciliation.detail.request [ Reference(Any) ]; # 0..1 Claim fhir:PaymentReconciliation.detail.response [ Reference(Any) ]; # 0..1 Claim Response fhir:PaymentReconciliation.detail.submitter [ Reference(Organization) ]; # 0..1 Organization which submitted the claim fhir:PaymentReconciliation.detail.payee [ Reference(Organization) ]; # 0..1 Organization which is receiving the payment fhir:PaymentReconciliation.detail.date [ date ]; # 0..1 Invoice date fhir:PaymentReconciliation.detail.amount [ Money ]; # 0..1 Amount being paid ], ...; fhir:PaymentReconciliation.form [ CodeableConcept ]; # 0..1 Printed Form Identifier fhir:PaymentReconciliation.total [ Money ]; # 0..1 Total amount of Payment fhir:PaymentReconciliation.processNote [ # 0..* Processing comments fhir:PaymentReconciliation.processNote.type [ CodeableConcept ]; # 0..1 display | print | printoper fhir:PaymentReconciliation.processNote.text [ string ]; # 0..1 Comment on the processing ], ...; ]
Changes since DSTU2
PaymentReconciliation | |
PaymentReconciliation.status |
|
PaymentReconciliation.outcome |
|
PaymentReconciliation.detail.type |
|
PaymentReconciliation.detail.response |
|
PaymentReconciliation.detail.amount |
|
PaymentReconciliation.form |
|
PaymentReconciliation.total |
|
PaymentReconciliation.processNote |
|
PaymentReconciliation.processNote.type |
|
PaymentReconciliation.processNote.text |
|
PaymentReconciliation.ruleset |
|
PaymentReconciliation.originalRuleset |
|
PaymentReconciliation.detail.responce |
|
PaymentReconciliation.note |
|
See the Full Difference for further information
Structure
XML Template
<PaymentReconciliation xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <identifier><!-- 0..* Identifier Business Identifier --></identifier> <status value="[code]"/><!-- 0..1 active | cancelled | draft | entered-in-error --> <period><!-- 0..1 Period Period covered --></period> <created value="[dateTime]"/><!-- 0..1 Creation date --> <organization><!-- 0..1 Reference(Organization) Insurer --></organization> <request><!-- 0..1 Reference(ProcessRequest) Claim reference --></request> <outcome><!-- 0..1 CodeableConcept complete | error | partial --></outcome> <disposition value="[string]"/><!-- 0..1 Disposition Message --> <requestProvider><!-- 0..1 Reference(Practitioner) Responsible practitioner --></requestProvider> <requestOrganization><!-- 0..1 Reference(Organization) Responsible organization --></requestOrganization> <detail> <!-- 0..* List of settlements --> <type><!-- 1..1 CodeableConcept Type code --></type> <request><!-- 0..1 Reference(Any) Claim --></request> <response><!-- 0..1 Reference(Any) Claim Response --></response> <submitter><!-- 0..1 Reference(Organization) Organization which submitted the claim --></submitter> <payee><!-- 0..1 Reference(Organization) Organization which is receiving the payment --></payee> <date value="[date]"/><!-- 0..1 Invoice date --> <amount><!-- 0..1 Money Amount being paid --></amount> </detail> <form><!-- 0..1 CodeableConcept Printed Form Identifier --></form> <total><!-- 0..1 Money Total amount of Payment --></total> <processNote> <!-- 0..* Processing comments --> <type><!-- 0..1 CodeableConcept display | print | printoper --></type> <text value="[string]"/><!-- 0..1 Comment on the processing --> </processNote> </PaymentReconciliation>
JSON Template
{ "resourceType" : "PaymentReconciliation", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "identifier" : [{ Identifier }], // Business Identifier "status" : "<code>", // active | cancelled | draft | entered-in-error "period" : { Period }, // Period covered "created" : "<dateTime>", // Creation date "organization" : { Reference(Organization) }, // Insurer "request" : { Reference(ProcessRequest) }, // Claim reference "outcome" : { CodeableConcept }, // complete | error | partial "disposition" : "<string>", // Disposition Message "requestProvider" : { Reference(Practitioner) }, // Responsible practitioner "requestOrganization" : { Reference(Organization) }, // Responsible organization "detail" : [{ // List of settlements "type" : { CodeableConcept }, // R! Type code "request" : { Reference(Any) }, // Claim "response" : { Reference(Any) }, // Claim Response "submitter" : { Reference(Organization) }, // Organization which submitted the claim "payee" : { Reference(Organization) }, // Organization which is receiving the payment "date" : "<date>", // Invoice date "amount" : { Money } // Amount being paid }], "form" : { CodeableConcept }, // Printed Form Identifier "total" : { Money }, // Total amount of Payment "processNote" : [{ // Processing comments "type" : { CodeableConcept }, // display | print | printoper "text" : "<string>" // Comment on the processing }] }
Turtle Template
@prefix fhir: <http://hl7.org/fhir/> . [ a fhir:PaymentReconciliation; fhir:nodeRole fhir:treeRoot; # if this is the parser root # from Resource: .id, .meta, .implicitRules, and .language # from DomainResource: .text, .contained, .extension, and .modifierExtension fhir:PaymentReconciliation.identifier [ Identifier ], ... ; # 0..* Business Identifier fhir:PaymentReconciliation.status [ code ]; # 0..1 active | cancelled | draft | entered-in-error fhir:PaymentReconciliation.period [ Period ]; # 0..1 Period covered fhir:PaymentReconciliation.created [ dateTime ]; # 0..1 Creation date fhir:PaymentReconciliation.organization [ Reference(Organization) ]; # 0..1 Insurer fhir:PaymentReconciliation.request [ Reference(ProcessRequest) ]; # 0..1 Claim reference fhir:PaymentReconciliation.outcome [ CodeableConcept ]; # 0..1 complete | error | partial fhir:PaymentReconciliation.disposition [ string ]; # 0..1 Disposition Message fhir:PaymentReconciliation.requestProvider [ Reference(Practitioner) ]; # 0..1 Responsible practitioner fhir:PaymentReconciliation.requestOrganization [ Reference(Organization) ]; # 0..1 Responsible organization fhir:PaymentReconciliation.detail [ # 0..* List of settlements fhir:PaymentReconciliation.detail.type [ CodeableConcept ]; # 1..1 Type code fhir:PaymentReconciliation.detail.request [ Reference(Any) ]; # 0..1 Claim fhir:PaymentReconciliation.detail.response [ Reference(Any) ]; # 0..1 Claim Response fhir:PaymentReconciliation.detail.submitter [ Reference(Organization) ]; # 0..1 Organization which submitted the claim fhir:PaymentReconciliation.detail.payee [ Reference(Organization) ]; # 0..1 Organization which is receiving the payment fhir:PaymentReconciliation.detail.date [ date ]; # 0..1 Invoice date fhir:PaymentReconciliation.detail.amount [ Money ]; # 0..1 Amount being paid ], ...; fhir:PaymentReconciliation.form [ CodeableConcept ]; # 0..1 Printed Form Identifier fhir:PaymentReconciliation.total [ Money ]; # 0..1 Total amount of Payment fhir:PaymentReconciliation.processNote [ # 0..* Processing comments fhir:PaymentReconciliation.processNote.type [ CodeableConcept ]; # 0..1 display | print | printoper fhir:PaymentReconciliation.processNote.text [ string ]; # 0..1 Comment on the processing ], ...; ]
Changes since DSTU2
PaymentReconciliation | |
PaymentReconciliation.status |
|
PaymentReconciliation.outcome |
|
PaymentReconciliation.detail.type |
|
PaymentReconciliation.detail.response |
|
PaymentReconciliation.detail.amount |
|
PaymentReconciliation.form |
|
PaymentReconciliation.total |
|
PaymentReconciliation.processNote |
|
PaymentReconciliation.processNote.type |
|
PaymentReconciliation.processNote.text |
|
PaymentReconciliation.ruleset |
|
PaymentReconciliation.originalRuleset |
|
PaymentReconciliation.detail.responce |
|
PaymentReconciliation.note |
|
See the Full Difference for further information
Alternate definitions: Master Definition (XML, JSON), XML Schema/Schematron (for ) + JSON Schema, ShEx (for Turtle)
Path | Definition | Type | Reference |
---|---|---|---|
PaymentReconciliation.status | A code specifying the state of the resource instance. | Required | Financial Resource Status Codes |
PaymentReconciliation.outcome | The outcome of the processing. | Required | RemittanceOutcome |
PaymentReconciliation.detail.type | The reason for the amount: payment, adjustment, advance. | Example | Payment Type Codes |
PaymentReconciliation.form | The forms codes. | Example | Form Codes |
PaymentReconciliation.processNote.type | The presentation types of notes. | Required | NoteType |
Search parameters for this resource. The common parameters also apply. See Searching for more information about searching in REST, messaging, and services.
Name | Type | Description | Expression | In Common |
created | date | The creation date | PaymentReconciliation.created | |
disposition | string | The contents of the disposition message | PaymentReconciliation.disposition | |
identifier | token | The business identifier of the Explanation of Benefit | PaymentReconciliation.identifier | |
organization | reference | The organization who generated this resource | PaymentReconciliation.organization (Organization) | |
outcome | token | The processing outcome | PaymentReconciliation.outcome | |
request | reference | The reference to the claim | PaymentReconciliation.request (ProcessRequest) | |
request-organization | reference | The organization who generated this resource | PaymentReconciliation.requestOrganization (Organization) | |
request-provider | reference | The reference to the provider who sumbitted the claim | PaymentReconciliation.requestProvider (Practitioner) |