Skip to main content

Extension: Encounter Charge Code

URL for this extension:

https://fhir.netsmartcloud.com/v4/StructureDefinition/encounter-charge-code

Status: draft

This extension represents the Encounter charge code.

Context of Use

This extension may be used on the Encounter resource.

Supported CareRecords

This extension is supported by the following CareRecords:

  • Netsmart myAvatar

Formal Views of Extension Content

Differential Table

NameFlagsCard.DispositionDescription & Constraints
Extension0..*ExtensionEncounter Charge Code
- url1..1uri"[base]/StructureDefinition/encounter-charge-code"
- value[x]1..1CodingEncounter Charge Code
Binding This is bound to a customizable dictionary configured in myAvatar and may vary by organization.

Terminology Bindings

PathConformanceValueSet
Extension.value[x]extensibleThis is bound to a customizable dictionary configured in myAvatar and may vary by organization.

The codes can come from one of the following codesets to indicate the type of charge code:

CodeSystemDescription
https://fhir.netsmartcloud.com/v4/CodeSystem/AdmissionChargeCodeAdmission Charge Codes
https://fhir.netsmartcloud.com/v4/CodeSystem/DailyChargeCodeDaily Charge Codes
https://fhir.netsmartcloud.com/v4/CodeSystem/PartialHospBillingCodePartial Hospitalization Billing Codes
https://fhir.netsmartcloud.com/v4/CodeSystem/RoomAndBoardBillingCodeRoom and Board Billing Codes

Constraints

IdGradePath(s)DetailsRequirements
ele-1errorALL elementsAll FHIR elements must have a @value or children
: hasValue() or (children().count() > id.count())
ext-1errorALL extensionsMust have either extensions or value[x], not both
: extension.exists() != value.exists()

Examples

{
"resourceType": "Encounter",
"id": "arrived_3||6386.71",
"extension": [
{
"url": "https://fhir.netsmartcloud.com/v4/StructureDefinition/encounter-charge-code",
"valueCoding": {
"system": "https://fhir.netsmartcloud.com/v4/CodeSystem/AdmissionChargeCode",
"code": "301"
}
}
// additional extensions
],
"status": "arrived",
// additional Encounter content
}