This page is part of the FHIR Specification (v1.8.0: STU 3 Draft). 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
Patient Administration Work Group | Maturity Level: 0 | Compartments: Device, Patient, Practitioner |
A financial tool for tracking value accrued for a particular purpose. In the healthcare field, used to track charges for a patient, cost centers, etc.
This resource is referenced by Encounter and EpisodeOfCare
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
Account | Σ | DomainResource | Tracks balance, charges, for patient or cost center | |
identifier | Σ | 0..* | Identifier | Account number |
name | Σ | 0..1 | string | Human-readable label |
type | Σ | 0..1 | CodeableConcept | E.g. patient, expense, depreciation |
status | ?!Σ | 0..1 | code | active | inactive | entered-in-error AccountStatus (Required) |
active | Σ | 0..1 | Period | Time window that transactions may be posted to this account |
currency | Σ | 0..1 | Coding | Base currency in which balance is tracked AccountCurrency (Example) |
balance | Σ | 0..1 | Money | How much is in account? |
coverage | Σ | 0..* | Reference(Coverage) | The party(s) that are responsible for covering the payment of this account |
coveragePeriod | Σ | 0..1 | Period | Transaction window |
subject | Σ | 0..1 | Reference(Patient | Device | Practitioner | Location | HealthcareService | Organization) | What is account tied to? |
owner | Σ | 0..1 | Reference(Organization) | Who is responsible? |
description | Σ | 0..1 | string | Explanation of purpose/use |
guarantor | Σ | 0..* | BackboneElement | Responsible for the account |
party | Σ | 1..1 | Reference(Patient | RelatedPerson | Organization) | Responsible entity |
onHold | Σ | 0..1 | boolean | Credit or other hold applied |
period | Σ | 0..1 | Period | Guarrantee account during |
Documentation for this format |
UML Diagram (Legend)
XML Template
<Account xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <identifier><!-- 0..* Identifier Account number --></identifier> <name value="[string]"/><!-- 0..1 Human-readable label --> <type><!-- 0..1 CodeableConcept E.g. patient, expense, depreciation --></type> <status value="[code]"/><!-- 0..1 active | inactive | entered-in-error --> <active><!-- 0..1 Period Time window that transactions may be posted to this account --></active> <currency><!-- 0..1 Coding Base currency in which balance is tracked --></currency> <balance><!-- 0..1 Money How much is in account? --></balance> <coverage><!-- 0..* Reference(Coverage) The party(s) that are responsible for covering the payment of this account --></coverage> <coveragePeriod><!-- 0..1 Period Transaction window --></coveragePeriod> <subject><!-- 0..1 Reference(Patient|Device|Practitioner|Location| HealthcareService|Organization) What is account tied to? --></subject> <owner><!-- 0..1 Reference(Organization) Who is responsible? --></owner> <description value="[string]"/><!-- 0..1 Explanation of purpose/use --> <guarantor> <!-- 0..* Responsible for the account --> <party><!-- 1..1 Reference(Patient|RelatedPerson|Organization) Responsible entity --></party> <onHold value="[boolean]"/><!-- 0..1 Credit or other hold applied --> <period><!-- 0..1 Period Guarrantee account during --></period> </guarantor> </Account>
JSON Template
{ "resourceType" : "Account", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "identifier" : [{ Identifier }], // Account number "name" : "<string>", // Human-readable label "type" : { CodeableConcept }, // E.g. patient, expense, depreciation "status" : "<code>", // active | inactive | entered-in-error "active" : { Period }, // Time window that transactions may be posted to this account "currency" : { Coding }, // Base currency in which balance is tracked "balance" : { Money }, // How much is in account? "coverage" : [{ Reference(Coverage) }], // The party(s) that are responsible for covering the payment of this account "coveragePeriod" : { Period }, // Transaction window "subject" : { Reference(Patient|Device|Practitioner|Location| HealthcareService|Organization) }, // What is account tied to? "owner" : { Reference(Organization) }, // Who is responsible? "description" : "<string>", // Explanation of purpose/use "guarantor" : [{ // Responsible for the account "party" : { Reference(Patient|RelatedPerson|Organization) }, // R! Responsible entity "onHold" : <boolean>, // Credit or other hold applied "period" : { Period } // Guarrantee account during }] }
Turtle Template
@prefix fhir: <http://hl7.org/fhir/> . [ a fhir:Account; 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:Account.identifier [ Identifier ], ... ; # 0..* Account number fhir:Account.name [ string ]; # 0..1 Human-readable label fhir:Account.type [ CodeableConcept ]; # 0..1 E.g. patient, expense, depreciation fhir:Account.status [ code ]; # 0..1 active | inactive | entered-in-error fhir:Account.active [ Period ]; # 0..1 Time window that transactions may be posted to this account fhir:Account.currency [ Coding ]; # 0..1 Base currency in which balance is tracked fhir:Account.balance [ Money ]; # 0..1 How much is in account? fhir:Account.coverage [ Reference(Coverage) ], ... ; # 0..* The party(s) that are responsible for covering the payment of this account fhir:Account.coveragePeriod [ Period ]; # 0..1 Transaction window fhir:Account.subject [ Reference(Patient|Device|Practitioner|Location|HealthcareService|Organization) ]; # 0..1 What is account tied to? fhir:Account.owner [ Reference(Organization) ]; # 0..1 Who is responsible? fhir:Account.description [ string ]; # 0..1 Explanation of purpose/use fhir:Account.guarantor [ # 0..* Responsible for the account fhir:Account.guarantor.party [ Reference(Patient|RelatedPerson|Organization) ]; # 1..1 Responsible entity fhir:Account.guarantor.onHold [ boolean ]; # 0..1 Credit or other hold applied fhir:Account.guarantor.period [ Period ]; # 0..1 Guarrantee account during ], ...; ]
Changes since DSTU2
Account | |
Account.status | Add Binding http://hl7.org/fhir/ValueSet/account-status (required) |
Account.active | Renamed from activePeriod to active |
Account.balance | Type changed from Quantity{http://hl7.org/fhir/StructureDefinition/Money} to Money |
Account.coverage | added Element |
Account.guarantor | added Element |
Account.guarantor.party | added Element |
Account.guarantor.onHold | added Element |
Account.guarantor.period | added Element |
See the Full Difference for further information
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
Account | Σ | DomainResource | Tracks balance, charges, for patient or cost center | |
identifier | Σ | 0..* | Identifier | Account number |
name | Σ | 0..1 | string | Human-readable label |
type | Σ | 0..1 | CodeableConcept | E.g. patient, expense, depreciation |
status | ?!Σ | 0..1 | code | active | inactive | entered-in-error AccountStatus (Required) |
active | Σ | 0..1 | Period | Time window that transactions may be posted to this account |
currency | Σ | 0..1 | Coding | Base currency in which balance is tracked AccountCurrency (Example) |
balance | Σ | 0..1 | Money | How much is in account? |
coverage | Σ | 0..* | Reference(Coverage) | The party(s) that are responsible for covering the payment of this account |
coveragePeriod | Σ | 0..1 | Period | Transaction window |
subject | Σ | 0..1 | Reference(Patient | Device | Practitioner | Location | HealthcareService | Organization) | What is account tied to? |
owner | Σ | 0..1 | Reference(Organization) | Who is responsible? |
description | Σ | 0..1 | string | Explanation of purpose/use |
guarantor | Σ | 0..* | BackboneElement | Responsible for the account |
party | Σ | 1..1 | Reference(Patient | RelatedPerson | Organization) | Responsible entity |
onHold | Σ | 0..1 | boolean | Credit or other hold applied |
period | Σ | 0..1 | Period | Guarrantee account during |
Documentation for this format |
XML Template
<Account xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <identifier><!-- 0..* Identifier Account number --></identifier> <name value="[string]"/><!-- 0..1 Human-readable label --> <type><!-- 0..1 CodeableConcept E.g. patient, expense, depreciation --></type> <status value="[code]"/><!-- 0..1 active | inactive | entered-in-error --> <active><!-- 0..1 Period Time window that transactions may be posted to this account --></active> <currency><!-- 0..1 Coding Base currency in which balance is tracked --></currency> <balance><!-- 0..1 Money How much is in account? --></balance> <coverage><!-- 0..* Reference(Coverage) The party(s) that are responsible for covering the payment of this account --></coverage> <coveragePeriod><!-- 0..1 Period Transaction window --></coveragePeriod> <subject><!-- 0..1 Reference(Patient|Device|Practitioner|Location| HealthcareService|Organization) What is account tied to? --></subject> <owner><!-- 0..1 Reference(Organization) Who is responsible? --></owner> <description value="[string]"/><!-- 0..1 Explanation of purpose/use --> <guarantor> <!-- 0..* Responsible for the account --> <party><!-- 1..1 Reference(Patient|RelatedPerson|Organization) Responsible entity --></party> <onHold value="[boolean]"/><!-- 0..1 Credit or other hold applied --> <period><!-- 0..1 Period Guarrantee account during --></period> </guarantor> </Account>
JSON Template
{ "resourceType" : "Account", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "identifier" : [{ Identifier }], // Account number "name" : "<string>", // Human-readable label "type" : { CodeableConcept }, // E.g. patient, expense, depreciation "status" : "<code>", // active | inactive | entered-in-error "active" : { Period }, // Time window that transactions may be posted to this account "currency" : { Coding }, // Base currency in which balance is tracked "balance" : { Money }, // How much is in account? "coverage" : [{ Reference(Coverage) }], // The party(s) that are responsible for covering the payment of this account "coveragePeriod" : { Period }, // Transaction window "subject" : { Reference(Patient|Device|Practitioner|Location| HealthcareService|Organization) }, // What is account tied to? "owner" : { Reference(Organization) }, // Who is responsible? "description" : "<string>", // Explanation of purpose/use "guarantor" : [{ // Responsible for the account "party" : { Reference(Patient|RelatedPerson|Organization) }, // R! Responsible entity "onHold" : <boolean>, // Credit or other hold applied "period" : { Period } // Guarrantee account during }] }
Turtle Template
@prefix fhir: <http://hl7.org/fhir/> . [ a fhir:Account; 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:Account.identifier [ Identifier ], ... ; # 0..* Account number fhir:Account.name [ string ]; # 0..1 Human-readable label fhir:Account.type [ CodeableConcept ]; # 0..1 E.g. patient, expense, depreciation fhir:Account.status [ code ]; # 0..1 active | inactive | entered-in-error fhir:Account.active [ Period ]; # 0..1 Time window that transactions may be posted to this account fhir:Account.currency [ Coding ]; # 0..1 Base currency in which balance is tracked fhir:Account.balance [ Money ]; # 0..1 How much is in account? fhir:Account.coverage [ Reference(Coverage) ], ... ; # 0..* The party(s) that are responsible for covering the payment of this account fhir:Account.coveragePeriod [ Period ]; # 0..1 Transaction window fhir:Account.subject [ Reference(Patient|Device|Practitioner|Location|HealthcareService|Organization) ]; # 0..1 What is account tied to? fhir:Account.owner [ Reference(Organization) ]; # 0..1 Who is responsible? fhir:Account.description [ string ]; # 0..1 Explanation of purpose/use fhir:Account.guarantor [ # 0..* Responsible for the account fhir:Account.guarantor.party [ Reference(Patient|RelatedPerson|Organization) ]; # 1..1 Responsible entity fhir:Account.guarantor.onHold [ boolean ]; # 0..1 Credit or other hold applied fhir:Account.guarantor.period [ Period ]; # 0..1 Guarrantee account during ], ...; ]
Changes since DSTU2
Account | |
Account.status | Add Binding http://hl7.org/fhir/ValueSet/account-status (required) |
Account.active | Renamed from activePeriod to active |
Account.balance | Type changed from Quantity{http://hl7.org/fhir/StructureDefinition/Money} to Money |
Account.coverage | added Element |
Account.guarantor | added Element |
Account.guarantor.party | added Element |
Account.guarantor.onHold | added Element |
Account.guarantor.period | added Element |
See the Full Difference for further information
Alternate definitions: Master Definition (XML, JSON), XML Schema/Schematron (for ) + JSON Schema, ShEx (for Turtle), JSON-LD (for RDF as JSON-LD),
Path | Definition | Type | Reference |
---|---|---|---|
Account.type | The usage type of this account, permits categorization of accounts. | Unknown | No details provided yet |
Account.status | Indicates whether the account is available to be used. | Required | AccountStatus |
Account.currency | The monetary currency in which this account records values. | Example | Currency codes - ISO 4217 |
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 | Paths | In Common |
balance | quantity | How much is in account? | Account.balance | |
identifier | token | Account number | Account.identifier | |
name | string | Human-readable label | Account.name | |
owner | reference | Who is responsible? | Account.owner (Organization) | |
patient | reference | What is account tied to? | Account.subject (Patient) | |
period | date | Transaction window | Account.coveragePeriod | |
status | token | active | inactive | entered-in-error | Account.status | |
subject | reference | What is account tied to? | Account.subject (Practitioner, Organization, Device, Patient, HealthcareService, Location) | |
type | token | E.g. patient, expense, depreciation | Account.type |