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 the ValueSet resources used in the esMD FHIR Implementation Guide. These ValueSets define specific groups of codes that are relevant to esMD workflows, such as document submission statuses, rejection reasons, and administrative codes.
Below is a list of all the ValueSets included in this guide, along with their descriptions, canonical URLs, and links to detailed views.
The following table provides detailed descriptions of the key ValueSets used in esMD, with links to their respective pages.
The esMD FHIR Implementation Guide uses these ValueSets across multiple resources, including:
DocumentReference ResourceThe following JSON snippet demonstrates how to use the Document Submission Status and Document Rejection Reasons ValueSets within a DocumentReference resource:
{
"resourceType": "DocumentReference",
"status": "current",
"docStatus": {
"coding": [
{
"system": "http://example.org/fhir/ValueSet/document-submission-status",
"code": "under-review",
"display": "Under Review"
}
]
},
"content": [
{
"attachment": {
"contentType": "application/pdf",
"url": "http://example.org/binary/1234"
}
}
],
"context": {
"status": {
"coding": [
{
"system": "http://example.org/fhir/ValueSet/document-rejection-reasons",
"code": "insufficient-info",
"display": "Insufficient Info"
}
]
}
}
}