ESMD FHIR Implementation Guide
1.0.0 - esmd
ESMD FHIR Implementation Guide - Local Development build (v1.0.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions
This page provides an overview of all CodeSystem resources used in the esMD FHIR Implementation Guide. These CodeSystems define the sets of codes used in various esMD workflows, such as document submission statuses, rejection reasons, and administrative processes.
The following table provides a comprehensive list of the CodeSystems defined in the esMD IG, with additional information on the individual codes used in each system.
The esMD system relies heavily on consistent terminology to manage document submissions, reviews, and statuses. These CodeSystems are used across several resources, including DocumentReference, OperationOutcome, and Bundle.
The following JSON shows how to use codes from the Document Submission Status CodeSystem in a DocumentReference resource:
{
"resourceType": "DocumentReference",
"status": "current",
"docStatus": "final",
"content": [
{
"attachment": {
"contentType": "application/pdf",
"url": "http://example.org/binary/1234"
}
}
],
"context": {
"status": {
"coding": [
{
"system": "http://example.org/fhir/CodeSystem/document-submission-status",
"code": "submitted",
"display": "Submitted"
}
]
}
}
}