FHIR Helpers
FHIR utilities for HealthChain.
add_resource(bundle, resource, full_url=None)
Add a resource to a bundle.
PARAMETER | DESCRIPTION |
---|---|
bundle
|
The bundle to add to
TYPE:
|
resource
|
The resource to add, e.g. Condition, MedicationStatement, AllergyIntolerance
TYPE:
|
full_url
|
Optional full URL for the resource
TYPE:
|
Source code in healthchain/fhir/bundle_helpers.py
create_allergy_intolerance(patient, code=None, display=None, system='http://snomed.info/sct')
Create a minimal active FHIR AllergyIntolerance. If you need to create a more complex allergy intolerance, use the FHIR AllergyIntolerance resource directly. https://build.fhir.org/allergyintolerance.html
PARAMETER | DESCRIPTION |
---|---|
patient
|
REQUIRED. Reference to the patient (e.g. "Patient/123")
TYPE:
|
code
|
The allergen code
TYPE:
|
display
|
The display name for the allergen
TYPE:
|
system
|
The code system (default: SNOMED CT)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
AllergyIntolerance
|
A FHIR AllergyIntolerance resource with an auto-generated ID prefixed with 'hc-'
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_bundle(bundle_type='collection')
Create an empty FHIR Bundle. https://www.hl7.org/fhir/bundle.html
PARAMETER | DESCRIPTION |
---|---|
bundle_type
|
The type of bundle (default: collection) Valid types: document, message, transaction, transaction-response, batch, batch-response, history, searchset, collection
TYPE:
|
Source code in healthchain/fhir/bundle_helpers.py
create_condition(subject, clinical_status='active', code=None, display=None, system='http://snomed.info/sct')
Create a minimal active FHIR Condition. If you need to create a more complex condition, use the FHIR Condition resource directly. https://build.fhir.org/condition.html
PARAMETER | DESCRIPTION |
---|---|
subject
|
REQUIRED. Reference to the patient (e.g. "Patient/123")
TYPE:
|
clinical_status
|
REQUIRED. Clinical status (default: active)
TYPE:
|
code
|
The condition code
TYPE:
|
display
|
The display name for the condition
TYPE:
|
system
|
The code system (default: SNOMED CT)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Condition
|
A FHIR Condition resource with an auto-generated ID prefixed with 'hc-'
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_document_reference(data=None, url=None, content_type=None, status='current', description='DocumentReference created by HealthChain', attachment_title='Attachment created by HealthChain')
Create a minimal FHIR DocumentReference. If you need to create a more complex document reference, use the FHIR DocumentReference resource directly. https://build.fhir.org/documentreference.html
PARAMETER | DESCRIPTION |
---|---|
data
|
The data content of the document attachment
TYPE:
|
url
|
URL where the document can be accessed
TYPE:
|
content_type
|
MIME type of the document (e.g. "application/pdf", "text/xml", "image/png")
TYPE:
|
status
|
REQUIRED. Status of the document reference (default: current)
TYPE:
|
description
|
Description of the document reference
TYPE:
|
attachment_title
|
Title for the document attachment
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
DocumentReference
|
A FHIR DocumentReference resource with an auto-generated ID prefixed with 'hc-'
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_medication_statement(subject, status='recorded', code=None, display=None, system='http://snomed.info/sct')
Create a minimal recorded FHIR MedicationStatement. If you need to create a more complex medication statement, use the FHIR MedicationStatement resource directly. https://build.fhir.org/medicationstatement.html
PARAMETER | DESCRIPTION |
---|---|
subject
|
REQUIRED. Reference to the patient (e.g. "Patient/123")
TYPE:
|
status
|
REQUIRED. Status of the medication (default: recorded)
TYPE:
|
code
|
The medication code
TYPE:
|
display
|
The display name for the medication
TYPE:
|
system
|
The code system (default: SNOMED CT)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
MedicationStatement
|
A FHIR MedicationStatement resource with an auto-generated ID prefixed with 'hc-'
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_single_attachment(content_type=None, data=None, url=None, title='Attachment created by HealthChain')
Create a minimal FHIR Attachment.
Creates a FHIR Attachment resource with basic fields. Either data or url should be provided. If data is provided, it will be base64 encoded.
PARAMETER | DESCRIPTION |
---|---|
content_type
|
The MIME type of the content
TYPE:
|
data
|
The actual data content to be base64 encoded
TYPE:
|
url
|
The URL where the data can be found
TYPE:
|
title
|
A title for the attachment (default: "Attachment created by HealthChain")
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Attachment
|
A FHIR Attachment resource with basic metadata and content
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_single_codeable_concept(code, display=None, system='http://snomed.info/sct')
Create a minimal FHIR CodeableConcept with a single coding.
PARAMETER | DESCRIPTION |
---|---|
code
|
REQUIRED. The code value from the code system
TYPE:
|
display
|
The display name for the code
TYPE:
|
system
|
The code system (default: SNOMED CT)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
CodeableConcept
|
A FHIR CodeableConcept resource with a single coding
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_single_reaction(code, display=None, system='http://snomed.info/sct', severity=None)
Create a minimal FHIR Reaction with a single coding.
Creates a FHIR Reaction object with a single manifestation coding. The manifestation describes the clinical reaction that was observed. The severity indicates how severe the reaction was.
PARAMETER | DESCRIPTION |
---|---|
code
|
REQUIRED. The code value from the code system representing the reaction manifestation
TYPE:
|
display
|
The display name for the manifestation code
TYPE:
|
system
|
The code system for the manifestation code (default: SNOMED CT)
TYPE:
|
severity
|
The severity of the reaction (mild, moderate, severe)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
List[Dict[str, Any]]
|
A list containing a single FHIR Reaction dictionary with manifestation and severity fields |
Source code in healthchain/fhir/helpers.py
get_resources(bundle, resource_type)
Get all resources of a specific type from a bundle.
PARAMETER | DESCRIPTION |
---|---|
bundle
|
The bundle to search
TYPE:
|
resource_type
|
String name of the resource type (e.g. "Condition") or the type itself
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
List[Resource]
|
List of resources of the specified type |
Example
bundle = create_bundle()
Using string identifier
conditions = get_resources(bundle, "Condition") medications = get_resources(bundle, "MedicationStatement") allergies = get_resources(bundle, "AllergyIntolerance")
Or using type directly
from fhir.resources.condition import Condition conditions = get_resources(bundle, Condition)
Source code in healthchain/fhir/bundle_helpers.py
read_content_attachment(document_reference, include_data=True)
Read the attachments in a human readable format from a FHIR DocumentReference content field.
PARAMETER | DESCRIPTION |
---|---|
document_reference
|
The FHIR DocumentReference resource
TYPE:
|
include_data
|
Whether to include the data of the attachments. If true, the data will be also be decoded (default: True)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Optional[List[Dict[str, Any]]]
|
Optional[List[Dict[str, Any]]]: List of dictionaries containing attachment data and metadata, or None if no attachments are found: [ { "data": str, "metadata": Dict[str, Any] } ] |
Source code in healthchain/fhir/helpers.py
set_problem_list_item_category(condition)
Set the category of a FHIR Condition to problem-list-item.
Sets the category field of a FHIR Condition resource to indicate it is a problem list item. This is commonly used to distinguish conditions that are part of the patient's active problem list from other types of conditions (e.g. encounter-diagnosis).
PARAMETER | DESCRIPTION |
---|---|
condition
|
The FHIR Condition resource to modify
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Condition
|
The modified FHIR Condition resource with problem-list-item category set
TYPE:
|
Source code in healthchain/fhir/helpers.py
set_resources(bundle, resources, resource_type, replace=True)
Set resources of a specific type in the bundle.
PARAMETER | DESCRIPTION |
---|---|
bundle
|
The bundle to modify
TYPE:
|
resources
|
The new resources to add
TYPE:
|
resource_type
|
String name of the resource type (e.g. "Condition") or the type itself
TYPE:
|
replace
|
If True, remove existing resources of this type before adding new ones. If False, append new resources to existing ones. Defaults to True.
TYPE:
|
Example
bundle = create_bundle()
Append to existing resources (default behavior)
set_resources(bundle, [condition1, condition2], "Condition") set_resources(bundle, [medication1], "MedicationStatement")
Replace existing resources
set_resources(bundle, [condition3], "Condition", replace=True)
Or using type directly
from fhir.resources.condition import Condition set_resources(bundle, [condition1, condition2], Condition)
Source code in healthchain/fhir/bundle_helpers.py
bundle_helpers
Helper functions for working with FHIR Bundles.
Example usage
from healthchain.fhir import create_bundle, get_resources, set_resources
Create a bundle
bundle = create_bundle()
Add and retrieve conditions
conditions = get_resources(bundle, "Condition") set_resources(bundle, [new_condition], "Condition")
Add and retrieve medications
medications = get_resources(bundle, "MedicationStatement") set_resources(bundle, [new_medication], "MedicationStatement")
Add and retrieve allergies
allergies = get_resources(bundle, "AllergyIntolerance") set_resources(bundle, [new_allergy], "AllergyIntolerance")
add_resource(bundle, resource, full_url=None)
Add a resource to a bundle.
PARAMETER | DESCRIPTION |
---|---|
bundle
|
The bundle to add to
TYPE:
|
resource
|
The resource to add, e.g. Condition, MedicationStatement, AllergyIntolerance
TYPE:
|
full_url
|
Optional full URL for the resource
TYPE:
|
Source code in healthchain/fhir/bundle_helpers.py
create_bundle(bundle_type='collection')
Create an empty FHIR Bundle. https://www.hl7.org/fhir/bundle.html
PARAMETER | DESCRIPTION |
---|---|
bundle_type
|
The type of bundle (default: collection) Valid types: document, message, transaction, transaction-response, batch, batch-response, history, searchset, collection
TYPE:
|
Source code in healthchain/fhir/bundle_helpers.py
get_resource_type(resource_type)
Get the resource type class from string or type.
PARAMETER | DESCRIPTION |
---|---|
resource_type
|
String name of the resource type (e.g. "Condition") or the type itself
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Type[Resource]
|
The resource type class |
RAISES | DESCRIPTION |
---|---|
ValueError
|
If the resource type is not supported or cannot be imported |
Source code in healthchain/fhir/bundle_helpers.py
get_resources(bundle, resource_type)
Get all resources of a specific type from a bundle.
PARAMETER | DESCRIPTION |
---|---|
bundle
|
The bundle to search
TYPE:
|
resource_type
|
String name of the resource type (e.g. "Condition") or the type itself
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
List[Resource]
|
List of resources of the specified type |
Example
bundle = create_bundle()
Using string identifier
conditions = get_resources(bundle, "Condition") medications = get_resources(bundle, "MedicationStatement") allergies = get_resources(bundle, "AllergyIntolerance")
Or using type directly
from fhir.resources.condition import Condition conditions = get_resources(bundle, Condition)
Source code in healthchain/fhir/bundle_helpers.py
set_resources(bundle, resources, resource_type, replace=True)
Set resources of a specific type in the bundle.
PARAMETER | DESCRIPTION |
---|---|
bundle
|
The bundle to modify
TYPE:
|
resources
|
The new resources to add
TYPE:
|
resource_type
|
String name of the resource type (e.g. "Condition") or the type itself
TYPE:
|
replace
|
If True, remove existing resources of this type before adding new ones. If False, append new resources to existing ones. Defaults to True.
TYPE:
|
Example
bundle = create_bundle()
Append to existing resources (default behavior)
set_resources(bundle, [condition1, condition2], "Condition") set_resources(bundle, [medication1], "MedicationStatement")
Replace existing resources
set_resources(bundle, [condition3], "Condition", replace=True)
Or using type directly
from fhir.resources.condition import Condition set_resources(bundle, [condition1, condition2], Condition)
Source code in healthchain/fhir/bundle_helpers.py
helpers
Convenience functions for creating minimal FHIR resources.
_generate_id()
Generate a unique ID prefixed with 'hc-'.
RETURNS | DESCRIPTION |
---|---|
str
|
A unique ID string prefixed with 'hc-'
TYPE:
|
create_allergy_intolerance(patient, code=None, display=None, system='http://snomed.info/sct')
Create a minimal active FHIR AllergyIntolerance. If you need to create a more complex allergy intolerance, use the FHIR AllergyIntolerance resource directly. https://build.fhir.org/allergyintolerance.html
PARAMETER | DESCRIPTION |
---|---|
patient
|
REQUIRED. Reference to the patient (e.g. "Patient/123")
TYPE:
|
code
|
The allergen code
TYPE:
|
display
|
The display name for the allergen
TYPE:
|
system
|
The code system (default: SNOMED CT)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
AllergyIntolerance
|
A FHIR AllergyIntolerance resource with an auto-generated ID prefixed with 'hc-'
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_condition(subject, clinical_status='active', code=None, display=None, system='http://snomed.info/sct')
Create a minimal active FHIR Condition. If you need to create a more complex condition, use the FHIR Condition resource directly. https://build.fhir.org/condition.html
PARAMETER | DESCRIPTION |
---|---|
subject
|
REQUIRED. Reference to the patient (e.g. "Patient/123")
TYPE:
|
clinical_status
|
REQUIRED. Clinical status (default: active)
TYPE:
|
code
|
The condition code
TYPE:
|
display
|
The display name for the condition
TYPE:
|
system
|
The code system (default: SNOMED CT)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Condition
|
A FHIR Condition resource with an auto-generated ID prefixed with 'hc-'
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_document_reference(data=None, url=None, content_type=None, status='current', description='DocumentReference created by HealthChain', attachment_title='Attachment created by HealthChain')
Create a minimal FHIR DocumentReference. If you need to create a more complex document reference, use the FHIR DocumentReference resource directly. https://build.fhir.org/documentreference.html
PARAMETER | DESCRIPTION |
---|---|
data
|
The data content of the document attachment
TYPE:
|
url
|
URL where the document can be accessed
TYPE:
|
content_type
|
MIME type of the document (e.g. "application/pdf", "text/xml", "image/png")
TYPE:
|
status
|
REQUIRED. Status of the document reference (default: current)
TYPE:
|
description
|
Description of the document reference
TYPE:
|
attachment_title
|
Title for the document attachment
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
DocumentReference
|
A FHIR DocumentReference resource with an auto-generated ID prefixed with 'hc-'
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_medication_statement(subject, status='recorded', code=None, display=None, system='http://snomed.info/sct')
Create a minimal recorded FHIR MedicationStatement. If you need to create a more complex medication statement, use the FHIR MedicationStatement resource directly. https://build.fhir.org/medicationstatement.html
PARAMETER | DESCRIPTION |
---|---|
subject
|
REQUIRED. Reference to the patient (e.g. "Patient/123")
TYPE:
|
status
|
REQUIRED. Status of the medication (default: recorded)
TYPE:
|
code
|
The medication code
TYPE:
|
display
|
The display name for the medication
TYPE:
|
system
|
The code system (default: SNOMED CT)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
MedicationStatement
|
A FHIR MedicationStatement resource with an auto-generated ID prefixed with 'hc-'
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_single_attachment(content_type=None, data=None, url=None, title='Attachment created by HealthChain')
Create a minimal FHIR Attachment.
Creates a FHIR Attachment resource with basic fields. Either data or url should be provided. If data is provided, it will be base64 encoded.
PARAMETER | DESCRIPTION |
---|---|
content_type
|
The MIME type of the content
TYPE:
|
data
|
The actual data content to be base64 encoded
TYPE:
|
url
|
The URL where the data can be found
TYPE:
|
title
|
A title for the attachment (default: "Attachment created by HealthChain")
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Attachment
|
A FHIR Attachment resource with basic metadata and content
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_single_codeable_concept(code, display=None, system='http://snomed.info/sct')
Create a minimal FHIR CodeableConcept with a single coding.
PARAMETER | DESCRIPTION |
---|---|
code
|
REQUIRED. The code value from the code system
TYPE:
|
display
|
The display name for the code
TYPE:
|
system
|
The code system (default: SNOMED CT)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
CodeableConcept
|
A FHIR CodeableConcept resource with a single coding
TYPE:
|
Source code in healthchain/fhir/helpers.py
create_single_reaction(code, display=None, system='http://snomed.info/sct', severity=None)
Create a minimal FHIR Reaction with a single coding.
Creates a FHIR Reaction object with a single manifestation coding. The manifestation describes the clinical reaction that was observed. The severity indicates how severe the reaction was.
PARAMETER | DESCRIPTION |
---|---|
code
|
REQUIRED. The code value from the code system representing the reaction manifestation
TYPE:
|
display
|
The display name for the manifestation code
TYPE:
|
system
|
The code system for the manifestation code (default: SNOMED CT)
TYPE:
|
severity
|
The severity of the reaction (mild, moderate, severe)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
List[Dict[str, Any]]
|
A list containing a single FHIR Reaction dictionary with manifestation and severity fields |
Source code in healthchain/fhir/helpers.py
read_content_attachment(document_reference, include_data=True)
Read the attachments in a human readable format from a FHIR DocumentReference content field.
PARAMETER | DESCRIPTION |
---|---|
document_reference
|
The FHIR DocumentReference resource
TYPE:
|
include_data
|
Whether to include the data of the attachments. If true, the data will be also be decoded (default: True)
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Optional[List[Dict[str, Any]]]
|
Optional[List[Dict[str, Any]]]: List of dictionaries containing attachment data and metadata, or None if no attachments are found: [ { "data": str, "metadata": Dict[str, Any] } ] |
Source code in healthchain/fhir/helpers.py
set_problem_list_item_category(condition)
Set the category of a FHIR Condition to problem-list-item.
Sets the category field of a FHIR Condition resource to indicate it is a problem list item. This is commonly used to distinguish conditions that are part of the patient's active problem list from other types of conditions (e.g. encounter-diagnosis).
PARAMETER | DESCRIPTION |
---|---|
condition
|
The FHIR Condition resource to modify
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Condition
|
The modified FHIR Condition resource with problem-list-item category set
TYPE:
|