Configuration 1 |
|
Applicable to |
|
Configured for use with |
|
* not required
Return to EHI Export homepage.
The export zip contains files to help a consumer understand and navigate the folder tree and files contained within.
File |
Description |
README.txt |
Contains a description of the export zip file, including
|
EHIEXPORTSCHEMA.txt | Contains Documentation URL (directs to this page) and Product Version |
ACCOUNTS_INDEX.html or ACCOUNTS_INDEX.xml |
Enables human readability of parts of the export package via a web browser |
Table of Contents.ndjson |
Contains metadata for every data file in the export zip to aid in machine readability
|
The table below outlines what sections will be included within the export zip file for a given MEDITECH product version.
Product Version |
Included Sections |
MEDITECH Expanse 2.2 | |
MEDITECH Expanse 2.1 | |
MEDITECH 6.15 | |
MEDITECH 6.08 Acute | |
MEDITECH Client/Server 5.67 Acute | |
MEDITECH MAGIC 5.67 Acute | |
MEDITECH HCA MAGIC 5.67 Acute |
Each section exists as a folder or file within the export zip. This table provides details about what is contained within each section.
Section |
Details |
Electronic Chart |
Folder: AANNNNNNNNNN_Patient_Name - the folder name represents the account number concatenated with the patient name.
Folder: Record_Documents_Patient_Name - the folder name represents patient level (not account specific) concatenated with the patient name.
Folder: Global_Documents_Patient_Name - the folder name indicates global documents (apply across all encounters) and is concatenated with the patient name
|
Ambulatory Results |
Folder: Ambulatory Results
|
Authorization & ReferralManagement Reports |
Folder: ARMEHI
|
Financial Reports |
Folder: Financial EHI
|
FHIR Resource Bundle |
File: US Core FHIR Resources.json
|
Historical Ambulatory Data |
Folder: Historical Ambulatory Data
|
Immunization History |
Folder: Patient Immunization History
|
Immunizations |
Folder: Immunization Record
|
Implantable Devices |
Folder: Implantable Devices Data
|
Patient Notices |
Folder: Patient Notices
|
Population Health |
Folder: Population Health
|
Provider Messages |
Folder: Provider Messages
|
Structured Clinical Documents |
Folder: CCDA
|
Utilization Review |
Folder: Utilization Review
|
The ndjson file contains an array of file metadata (FHIR Document Reference resources) for all of the patient data files contained within the export zip file. The pseudo-JSON below explains what each field represents.
{
"resourceType":"DocumentReference",
"id": <<Identifier of this DocumentReference>>,
"meta": {
"id": <<Identifier of this metadata>>,
"versionId": <<Identifier of this version>>,
"lastUpdated": <<When this was last updated>>,
"source": <<Where the resource came from>>,
"profile": [
"http://fhir.org/argonaut/ehi-api/StructureDefinition/ehi-document-reference"
],
"tag": [
{
"code": "ehi-export",
"display": "generated as part of an ehi-export request"
}
]
},
"implicitRules": <<A set of rules under which this content was created>>,
"language": <<Language of the resource content>>,
"status": "current",
"docStatus": <<Status options - preliminary | final | amended | entered-in-error>>,
"type": <<CodeableConcept indicating kind of document>>,
"subject": {
"reference": <<Patient Reference, resource is available in the US Core FHIR Resources.json>>
},
"date": <<Date the file was created>>,
"description": <<File description>>,
"content": [
{
"attachment": {
"id": <<Identifier of this attachment>>,
"contentType": <<File type>>,
"url": <<Pathway to the location of the file>>,
"size": <<File size>>,
"title": <<Title>>,
"creation": <<Date the file was created>>
}
}
],
"context": {
"id": <<Identifier of this context>>,
"encounter": [
{
"reference": <<Encounter Reference, resource is available in the US Core FHIR Resources.json>>
}
],
"period": {
"start": <<Beginning of the context period>>,
"end": <<End of the context period>>
}
}
}